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:
76
76
# "_mt" = multi-threaded
77
77
export JULIA_NUM_THREADS=16
78
78
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 always run the Distributed test suite.
87
+ export TESTS="[\"all\"]"
88
+ fi
81
89
fi
82
90
fi
83
91
You can’t perform that action at this time.
0 commit comments