Skip to content

Commit

Permalink
Xcode 15
Browse files Browse the repository at this point in the history
  • Loading branch information
kingslay committed Oct 19, 2023
1 parent c63a38a commit 2737194
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
- uses: actions/checkout@main
with:
submodules: 'true'
- name: Set up Xcode
run: |
sudo xcode-select -s /Applications/Xcode_15.0.app/Contents/Developer
xcode-select -p
xcodebuild -version
- name: Build
run: swift build -v
- name: Test
Expand All @@ -26,6 +31,11 @@ jobs:
- uses: actions/checkout@main
with:
submodules: 'true'
- name: Set up Xcode
run: |
sudo xcode-select -s /Applications/Xcode_15.0.app/Contents/Developer
xcode-select -p
xcodebuild -version
- name: Build
run: swift build --sdk `xcrun -sdk iphonesimulator -show-sdk-path` -Xswiftc -target -Xswiftc x86_64-apple-ios13.0-simulator

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ jobs:
- uses: actions/checkout@main
with:
submodules: 'true'
- name: Set up Xcode
run: |
sudo xcode-select -s /Applications/Xcode_15.0.app/Contents/Developer
xcode-select -p
xcodebuild -version
- name: Build
run: swift build -v -c release
- name: Test
Expand Down

0 comments on commit 2737194

Please sign in to comment.