Skip to content

Commit b911a64

Browse files
committed
[CI] Test Xcode 13
1 parent 0fd4ba4 commit b911a64

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci-swiftpm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: macos-11
1717
strategy:
1818
matrix:
19-
xcode: [12.4, 12.5]
19+
xcode: ["12.4", "12.5", "13.0"]
2020
env:
2121
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app
2222
steps:

.github/workflows/ci-xcode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: macos-11
1717
strategy:
1818
matrix:
19-
xcode: [12.4, 12.5]
19+
xcode: ["12.4", "12.5", "13.0"]
2020
platform: [macos, ios, tvos]
2121
fail-fast: false
2222
env:

test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function test_macos {
7979
function test_xcode_spm_macos {
8080
mv Nimble.xcodeproj Nimble.xcodeproj.bak
8181
trap 'mv Nimble.xcodeproj.bak Nimble.xcodeproj' EXIT
82-
run set -o pipefail && xcodebuild -scheme "Nimble" -configuration "Debug" -sdk "macosx$BUILD_MACOS_SDK_VERSION" OTHER_SWIFT_FLAGS='$(inherited) -suppress-warnings' build-for-testing test-without-building | xcpretty
82+
run set -o pipefail && xcodebuild -scheme "Nimble" -configuration "Debug" -sdk "macosx$BUILD_MACOS_SDK_VERSION" -destination "platform=macOS" OTHER_SWIFT_FLAGS='$(inherited) -suppress-warnings' build-for-testing test-without-building | xcpretty
8383
}
8484

8585
function test_xcode_spm_ios {

0 commit comments

Comments
 (0)