Skip to content

Commit fdb7671

Browse files
committed
Xcode 14.3
1 parent 7f892ed commit fdb7671

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,40 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
xcode_14_2:
10-
runs-on: macos-12
9+
xcode_14_3:
10+
runs-on: macos-13
1111
env:
12-
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
12+
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v3
1616
- name: Version
1717
run: swift --version
1818
- name: Build
19-
run: swift build --build-tests
19+
run: swift test --enable-code-coverage --filter do_not_test
2020
- name: Test
21-
run: swift test --enable-code-coverage
21+
run: swift test --enable-code-coverage --skip-build
2222
- name: Gather code coverage
2323
run: xcrun llvm-cov export -format="lcov" .build/debug/AllocatedLockPackageTests.xctest/Contents/MacOS/AllocatedLockPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov
2424
- name: Upload Coverage
2525
uses: codecov/codecov-action@v3
2626
with:
2727
files: ./coverage_report.lcov
2828

29+
xcode_14_2:
30+
runs-on: macos-12
31+
env:
32+
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
33+
steps:
34+
- name: Checkout
35+
uses: actions/checkout@v3
36+
- name: Version
37+
run: swift --version
38+
- name: Build
39+
run: swift build --build-tests
40+
- name: Test
41+
run: swift test --skip-build
42+
2943
linux_swift_5_7:
3044
runs-on: ubuntu-latest
3145
container: swift:5.7

0 commit comments

Comments
 (0)