We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
runs_on_pool
1 parent 7cb39d9 commit a2ff409Copy full SHA for a2ff409
ci/lib.sh
@@ -161,6 +161,12 @@ then
161
MAKEFLAGS="$MAKEFLAGS --jobs=10"
162
test windows_nt != "$CI_OS_NAME" ||
163
GIT_TEST_OPTS="--no-chain-lint --no-bin-wrappers $GIT_TEST_OPTS"
164
+ case "$CI_OS_NAME" in
165
+ linux) runs_on_pool=ubuntu-latest;;
166
+ macos|osx) runs_on_pool=macos-latest;;
167
+ windows_nt) runs_on_pool=windows-latest;;
168
+ *) echo "Unhandled OS: $CI_OS_NAME" >&2; exit 1;;
169
+ esac
170
elif test true = "$GITHUB_ACTIONS"
171
then
172
CI_TYPE=github-actions
0 commit comments