File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 66XCODE_VERSION=$( sed ' s/^~> *//' .xcode-version)
77CI_TOOLKIT_PLUGIN_VERSION=" 4.0.0"
88
9- # Note: `-v4` suffix was added to use xcode-16.1-v4 image; remember to remove that suffix during the next Xcode update
10- export IMAGE_ID=" xcode-$XCODE_VERSION -v4"
9+ # FIXME: The -v2 suffix is required only as long as we use the 16.3 image.
10+ # This if check is here just so that we won't break the build if we forget about the suffix when it comes upgrade time.
11+ # But if you are reading this and 16.3 is no longer in use, please remove the check and the suffix.
12+ if [ " $XCODE_VERSION " = " 16.3" ]; then
13+ export IMAGE_ID=" xcode-$XCODE_VERSION -v2"
14+ else
15+ export IMAGE_ID=" xcode-$XCODE_VERSION "
16+ fi
1117export CI_TOOLKIT=" automattic/a8c-ci-toolkit#$CI_TOOLKIT_PLUGIN_VERSION "
Original file line number Diff line number Diff line change 1- ~> 16.1
1+ ~> 16.3
You can’t perform that action at this time.
0 commit comments