Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/ci/docker/scripts/stage_2_test_set1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ set -ex

# Run a subset of tests. Used to run tests in parallel in multiple jobs.

# When this job partition is run as part of PR CI, skip tidy to allow revealing more failures. The
# dedicated `tidy` job failing won't block other PR CI jobs from completing, and so tidy failures
# shouldn't inhibit revealing other failures in PR CI jobs.
if [ "$PR_CI_JOB" == "1" ]; then
echo "PR_CI_JOB set; skipping tidy"
SKIP_TIDY="--skip tidy"
fi

../x.py --stage 2 test \
${SKIP_TIDY:+$SKIP_TIDY} \
--skip compiler \
--skip src
9 changes: 9 additions & 0 deletions src/ci/docker/scripts/stage_2_test_set2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,16 @@ set -ex

# Run a subset of tests. Used to run tests in parallel in multiple jobs.

# When this job partition is run as part of PR CI, skip tidy to allow revealing more failures. The
# dedicated `tidy` job failing won't block other PR CI jobs from completing, and so tidy failures
# shouldn't inhibit revealing other failures in PR CI jobs.
if [ "$PR_CI_JOB" == "1" ]; then
echo "PR_CI_JOB set; skipping tidy"
SKIP_TIDY="--skip tidy"
fi

../x.py --stage 2 test \
${SKIP_TIDY:+$SKIP_TIDY} \
--skip tests \
--skip coverage-map \
--skip coverage-run \
Expand Down
Loading