File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
.buildkite/pipelines/main/platforms Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,16 @@ steps:
7676 # "MT" = multi-threaded
7777 export JULIA_NUM_THREADS=16
7878
79- # We do not run the Distributed test suite when multithreading is enabled.
80- export TESTS="[\"all\", \"--skip\", \"Distributed\"]"
79+ if [[ "$${BUILDKITE_PIPELINE_SLUG:?}" == "julia-release-1-dot-6" ]]; then
80+ # On Julia 1.6, we skip the Distributed test suite if multithreading is enabled.
81+ export TESTS="[\"all\", \"--skip\", \"Distributed\"]"
82+ elif [[ "$${BUILDKITE_PIPELINE_SLUG:?}" == "julia-release-1-dot-7" ]]; then
83+ # On Julia 1.7, we skip the Distributed test suite if multithreading is enabled.
84+ export TESTS="[\"all\", \"--skip\", \"Distributed\"]"
85+ else
86+ # On Julia 1.8 and later, we do not skip any test suites.
87+ export TESTS="[\"all\"]"
88+ fi
8189 fi
8290 fi
8391
You can’t perform that action at this time.
0 commit comments