Skip to content

Commit

Permalink
Add step to build/test workflow to force xcode 14.1 use on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
nirosys committed Dec 6, 2022
1 parent 1ed8f6c commit 96a8bc3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ jobs:
uses: actions/checkout@v2
with:
submodules: recursive
# This step should fix an issue with building on macos with gcc, and xcode 14.0,
# and should be removed once 14.1 is made default.
- name: Fix for XCode 14.0
if: runner.os == 'macOS'
run: |
echo "DEVELOPER_DIR=/Applications/Xcode_14.1.app" >> $GITHUB_ENV
- name: Build
run: |
./build-debug.sh
Expand Down

0 comments on commit 96a8bc3

Please sign in to comment.