From 4b42fa2d757dba9019297f5d4c9d1380d99c43e3 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 3 Oct 2019 16:31:50 -0700 Subject: [PATCH] Ensure all builds are triggered on a rust upgrade (#6229) --- ci/test-bench.sh | 3 ++- ci/test-coverage.sh | 5 +++-- ci/test-stable.sh | 1 + 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ci/test-bench.sh b/ci/test-bench.sh index 6f957971e..bfa5de3b1 100755 --- a/ci/test-bench.sh +++ b/ci/test-bench.sh @@ -12,7 +12,8 @@ ci/affects-files.sh \ .rs$ \ Cargo.lock$ \ Cargo.toml$ \ - ci/test-bench.sh \ + ^ci/rust-version.sh \ + ^ci/test-bench.sh \ || { annotate --style info --context test-bench \ "Bench skipped as no .rs files were modified" diff --git a/ci/test-coverage.sh b/ci/test-coverage.sh index 142c5854a..46f36e880 100755 --- a/ci/test-coverage.sh +++ b/ci/test-coverage.sh @@ -12,8 +12,9 @@ ci/affects-files.sh \ .rs$ \ Cargo.lock$ \ Cargo.toml$ \ - ci/test-coverage.sh \ - scripts/coverage.sh \ + ^ci/rust-version.sh \ + ^ci/test-coverage.sh \ + ^scripts/coverage.sh \ || { annotate --style info --context test-coverage \ "Coverage skipped as no .rs files were modified" diff --git a/ci/test-stable.sh b/ci/test-stable.sh index b11fbb26d..644735bd8 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -43,6 +43,7 @@ test-stable-perf) .rs$ \ Cargo.lock$ \ Cargo.toml$ \ + ^ci/rust-version.sh \ ^ci/test-stable-perf.sh \ ^ci/test-stable.sh \ ^ci/test-local-cluster.sh \