Skip to content

Commit

Permalink
Update svf-example-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jumormt authored Apr 28, 2024
1 parent c074612 commit 4d9f452
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/svf-example-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,27 @@ on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
env:
XCODE_VERSION: '15.3.0'
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
steps:
# checkout the repo
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 12
node-version: 18

# setup the environment
- name: mac-setup
if: runner.os == 'macOS'
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 14.2.0
xcode-version: ${{ env.XCODE_VERSION }}
- name: mac-setup-workaround
if: runner.os == 'macOS'
run: ln -sfn /Applications/Xcode_14.2.0.app /Applications/Xcode.app
run: ln -sfn /Applications/Xcode_${{ env.XCODE_VERSION }}.app /Applications/Xcode.app
- name: ubuntu-setup
if: runner.os == 'Linux'
run: |
Expand Down

0 comments on commit 4d9f452

Please sign in to comment.