Skip to content

Commit

Permalink
chore(ci): update xcode version support
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrechette authored Jul 9, 2024
1 parent ac1ea98 commit 93e0262
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tools/setup_osx_compiler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
COMPILER=$1

# See Github hosted runners:
# macos-14: https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md
# xcode 14.3.1, 15.0.1, 15.1, 15.2, 15.3, 15.4, 16.0
# macos-13: https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
# xcode 14.1, 14.2, 14.3.1, 15.0.1, 15.1, 15.2
# macos-12: https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md
# xcode 13.1, 12.2.1, 13.3.1, 13.4.1, 14.1, 14.2
# maxos-11: https://github.com/actions/runner-images/blob/main/images/macos/macos-11-Readme.md
Expand All @@ -22,7 +26,11 @@ elif [[ $COMPILER == xcode12 ]]; then
elif [[ $COMPILER == xcode13 ]]; then
XCODE_PATH="/Applications/Xcode_13.2.1.app"
elif [[ $COMPILER == xcode14 ]]; then
XCODE_PATH="/Applications/Xcode_14.2.app"
XCODE_PATH="/Applications/Xcode_14.3.1.app"
elif [[ $COMPILER == xcode15 ]]; then
XCODE_PATH="/Applications/Xcode_15.2.app"
elif [[ $COMPILER == xcode16 ]]; then
XCODE_PATH="/Applications/Xcode_16.0.app"
fi

# Select our XCode version
Expand Down

0 comments on commit 93e0262

Please sign in to comment.