diff --git a/ci/test-bench.sh b/ci/test-bench.sh index 6f957971e9..bfa5de3b11 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 142c5854ad..46f36e8803 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 b11fbb26d0..644735bd83 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 \