From c4a59896f85675c8f2502e34aaf340d2c04dda09 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 21 Jun 2018 12:43:27 -0700 Subject: [PATCH] Run test-erasure in a container --- ci/buildkite.yml | 2 +- ci/test-erasure.sh | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/ci/buildkite.yml b/ci/buildkite.yml index 7d73d83db0..5b911c7186 100644 --- a/ci/buildkite.yml +++ b/ci/buildkite.yml @@ -20,7 +20,7 @@ steps: - command: "ci/shellcheck.sh" name: "shellcheck [public]" timeout_in_minutes: 20 - - command: "ci/test-erasure.sh" + - command: "ci/docker-run.sh rust ci/test-erasure.sh" name: "erasure" timeout_in_minutes: 20 - wait diff --git a/ci/test-erasure.sh b/ci/test-erasure.sh index 9790578294..8705abe38b 100755 --- a/ci/test-erasure.sh +++ b/ci/test-erasure.sh @@ -8,8 +8,6 @@ cd "$(dirname "$0")/.." export LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH -# shellcheck disable=SC1090 # <-- shellcheck can't follow ~ -source ~/.cargo/env cargo test --features="erasure" exit 0