| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #!/usr/bin/env bash
- set -ex
- cd "$(dirname "$0")"/..
- eval "$(ci/channel-info.sh)"
- source ci/rust-version.sh
- source ci/docker/env.sh
- CHANNEL_OR_TAG=
- if [[ -n "$CI_TAG" ]]; then
- CHANNEL_OR_TAG=$CI_TAG
- else
- CHANNEL_OR_TAG=$CHANNEL
- fi
- if [[ -z $CHANNEL_OR_TAG ]]; then
- echo Unable to determine channel or tag to publish into, exiting.
- echo "^^^ +++"
- exit 0
- fi
- cd "$(dirname "$0")"
- rm -rf usr/
- ../ci/docker-run-default-image.sh scripts/cargo-install-all.sh docker-solana/usr
- cp -f ../scripts/run.sh usr/bin/solana-run.sh
- cp -f ../fetch-core-bpf.sh usr/bin/
- cp -f ../fetch-spl.sh usr/bin/
- cp -f ../fetch-programs.sh usr/bin/
- (
- cd usr/bin
- ./fetch-core-bpf.sh
- ./fetch-spl.sh
- )
- docker build \
- --build-arg "BASE_IMAGE=${CI_DOCKER_ARG_BASE_IMAGE}" \
- -t anzaxyz/agave:"$CHANNEL_OR_TAG" .
- maybeEcho=
- if [[ -z $CI ]]; then
- echo "Not CI, skipping |docker push|"
- maybeEcho="echo"
- else
- (
- set +x
- if [[ -n $DOCKER_PASSWORD && -n $DOCKER_USERNAME ]]; then
- echo "$DOCKER_PASSWORD" | docker login --username "$DOCKER_USERNAME" --password-stdin
- fi
- )
- fi
- $maybeEcho docker push anzaxyz/agave:"$CHANNEL_OR_TAG"
|