Skip to content

Commit

Permalink
Select Xcode explicitly in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Feb 27, 2024
1 parent bdb064e commit c839bcb
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,13 @@ jobs:
run: ${{ env.SCRIPTS_ROOT }}/install-ubuntu-deps
- name: Set up macOS build environment
if: runner.os == 'macOS'
run: ${{ env.SCRIPTS_ROOT }}/install-macos-deps
- name: Output macOS SDK version
if: runner.os == 'macOS'
run: xcrun --show-sdk-version
run: |
${{ env.SCRIPTS_ROOT }}/install-macos-deps
sudo xcode-select -s /Applications/Xcode_15.2.app
echo "==> Build environment"
uname -a
xcode-select -p
xcrun --show-sdk-version
# Build dependencies

Expand Down

0 comments on commit c839bcb

Please sign in to comment.