diff --git a/.travis.yml b/.travis.yml index c94da2c44..02505c726 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,7 @@ script: #- make lint - make fmt-check vet it after_success: -- docker pull stashapp/compiler:develop +- docker pull stashapp/compiler:3 - sh ./scripts/cross-compile.sh - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then sh ./scripts/upload-pull-request.sh; fi' before_deploy: diff --git a/scripts/cross-compile.sh b/scripts/cross-compile.sh index 5b9066ecb..4521e0814 100755 --- a/scripts/cross-compile.sh +++ b/scripts/cross-compile.sh @@ -14,4 +14,4 @@ LINUX_ARM32v6="echo '=== Building Linux (armv6 | Raspberry Pi 1) binary ==='; $S COMMAND="$SETUP $WINDOWS $DARWIN $LINUX_AMD64 $LINUX_ARM64v8 $LINUX_ARM32v7 $LINUX_ARM32v6 echo '=== Build complete ==='" -docker run --rm --mount type=bind,source="$(pwd)",target=/stash -w /stash stashapp/compiler:develop /bin/bash -c "$COMMAND" +docker run --rm --mount type=bind,source="$(pwd)",target=/stash -w /stash stashapp/compiler:3 /bin/bash -c "$COMMAND"