Skip to content

Commit

Permalink
fix(CI): remove the XCode version setup step
Browse files Browse the repository at this point in the history
There's a recent change in GitHub hosted runners that only one major version of Xcode will be available per macOS version.

See actions/runner-images#10703
  • Loading branch information
Xmader authored Nov 29, 2024
1 parent 38309a3 commit ff21692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
key: spidermonkey-${{ env.MOZCENTRAL_VERSION }}-${{ runner.os }}-${{ runner.arch }}
lookup-only: true # skip download
- name: Setup XCode
if: ${{ (matrix.os == 'macos-13' || matrix.os == 'macos-14') && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
if: ${{ matrix.os == 'macos-13' && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
# SpiderMonkey requires XCode SDK version at least 13.3
run: sudo xcode-select -switch /Applications/Xcode_14.3.app
- name: Build spidermonkey
Expand Down

0 comments on commit ff21692

Please sign in to comment.