summaryrefslogtreecommitdiff
path: root/ci/run-all.sh
diff options
context:
space:
mode:
authorPaul Osborne <osbpau@gmail.com>2016-03-06 23:15:52 -0600
committerPaul Osborne <osbpau@gmail.com>2016-03-13 00:41:05 -0600
commit3f2b70af27254f9cb2936e3be402bc39ab448b5f (patch)
tree90e75da9e5df0f0b919f1693372f425cac472cef /ci/run-all.sh
parent22b182029c64f8396ab19f095c539551a73978e6 (diff)
downloadnix-3f2b70af27254f9cb2936e3be402bc39ab448b5f.zip
testing: allow the docker image to be overriden
This is handy for trying out changes to the docker image for testing things out. Signed-off-by: Paul Osborne <osbpau@gmail.com>
Diffstat (limited to 'ci/run-all.sh')
-rwxr-xr-xci/run-all.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/run-all.sh b/ci/run-all.sh
index fd1f600c..67bf7c83 100755
--- a/ci/run-all.sh
+++ b/ci/run-all.sh
@@ -26,7 +26,7 @@ RUST_TARGETS=${RUST_TARGETS:-"\
x86_64-unknown-linux-gnu \
x86_64-unknown-linux-musl"}
-DOCKER_IMAGE="posborne/rust-cross"
+DOCKER_IMAGE=${DOCKER_IMAGE:-"posborne/rust-cross"}
BASE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"