Skip to content

Commit

Permalink
CI (Buildkite): Run the Distributed test suite with multithreading en…
Browse files Browse the repository at this point in the history
…abled (#42479)

(cherry picked from commit 72ec349)
  • Loading branch information
DilumAluthge authored and KristofferC committed Nov 11, 2021
1 parent 58b4ba5 commit ed9f3fa
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .buildkite/pipelines/main/platforms/tester_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,16 @@ steps:
# "MT" = multi-threaded
export JULIA_NUM_THREADS=16
# We do not run the Distributed test suite when multithreading is enabled.
export TESTS="[\"all\", \"--skip\", \"Distributed\"]"
if [[ "$${BUILDKITE_PIPELINE_SLUG:?}" == "julia-release-1-dot-6" ]]; then
# On Julia 1.6, we skip the Distributed test suite if multithreading is enabled.
export TESTS="[\"all\", \"--skip\", \"Distributed\"]"
elif [[ "$${BUILDKITE_PIPELINE_SLUG:?}" == "julia-release-1-dot-7" ]]; then
# On Julia 1.7, we skip the Distributed test suite if multithreading is enabled.
export TESTS="[\"all\", \"--skip\", \"Distributed\"]"
else
# On Julia 1.8 and later, we do not skip any test suites.
export TESTS="[\"all\"]"
fi
fi
fi
Expand Down

0 comments on commit ed9f3fa

Please sign in to comment.