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)
  • Loading branch information
DilumAluthge authored Oct 15, 2021
1 parent 2bdbc6f commit 72ec349
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

2 comments on commit 72ec349

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your package evaluation job has completed - possible new issues were detected. A full report can be found here.

Please sign in to comment.