summaryrefslogtreecommitdiff
path: root/ci/run-docker.sh
diff options
context:
space:
mode:
authorZac Berkowitz <zac.berkowitz@gmail.com>2017-02-25 02:16:30 +0000
committerBryant Mairs <bryant@mai.rs>2017-04-09 07:41:58 -0700
commit52963abcdddae0ee2684c33a1f451b8a3cf0406b (patch)
tree6df960fa8d710d519b038201c91c7bd7ec9d051e /ci/run-docker.sh
parent44c0ecbc42bc8f5ea132aa07cc612139a2cd74b0 (diff)
downloadnix-52963abcdddae0ee2684c33a1f451b8a3cf0406b.zip
Removed old ci infrastructure.
Diffstat (limited to 'ci/run-docker.sh')
-rwxr-xr-xci/run-docker.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/ci/run-docker.sh b/ci/run-docker.sh
deleted file mode 100755
index 3ef831c3..00000000
--- a/ci/run-docker.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-#
-# Run the nix tests in a docker container. This script expects the following
-# environment variables to be set:
-# - DOCKER_IMAGE : Docker image to use for testing (e.g. posborne/rust-cross:arm)
-# - RUST_VERSION : Rust Version to test against (e.g. 1.7.0)
-# - RUST_TARGET : Target Triple to test
-
-BASE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
-
-docker run -i -t \
- -v ${BASE_DIR}:/source \
- -e CARGO_TARGET_DIR=/build \
- ${DOCKER_IMAGE} \
- /source/ci/run.sh ${RUST_VERSION} ${RUST_TARGET}