File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 14
14
matrix :
15
15
# swift_version: ["5.10"]
16
16
container : ["swift:5.10-jammy", "swiftlang/swift:nightly-6.0-jammy"]
17
+ include :
18
+ - container : " swiftlang/swift:nightly-6.0-jammy"
19
+ continue-on-error : true
17
20
runs-on : ubuntu-22.04
18
21
env :
19
22
OPENSWIFTUI_WERROR : 1
@@ -37,14 +40,21 @@ jobs:
37
40
-instr-profile=.build-test-debug/debug/codecov/default.profdata \
38
41
.build-test-debug/debug/OpenSwiftUIPackageTests.xctest \
39
42
> coverage.txt
43
+ continue-on-error : ${{ matrix.continue-on-error }}
44
+ id : debug-test
40
45
- name : Building and running tests in release mode
41
46
run : |
42
47
swift test \
43
48
-c release \
44
49
--filter OpenSwiftUITests \
45
50
-Xswiftc -warnings-as-errors \
46
51
--build-path .build-test-release
52
+ continue-on-error : ${{ matrix.continue-on-error }}
53
+ id : release-test
54
+ if : steps.debug-test.outcome == 'success'
47
55
- uses : codecov/codecov-action@v3
48
56
with :
49
57
token : ${{ secrets.CODECOV_TOKEN }}
50
58
verbose : true
59
+ continue-on-error : true
60
+ if : steps.debug-test.outcome == 'success'
Original file line number Diff line number Diff line change 15
15
swift_version : ["5.10.0-RELEASE", "6.0-SNAPSHOT-2024-08-30-a"]
16
16
os : [ubuntu-22.04]
17
17
extra_params : [""]
18
+ include :
19
+ - swift_version : " 6.0-SNAPSHOT-2024-08-30-a"
20
+ continue-on-error : true
18
21
runs-on : ${{ matrix.os }}
19
22
env :
20
23
OPENSWIFTUI_WERROR : 1
30
33
- name : build
31
34
run : |
32
35
swift build --triple wasm32-unknown-wasi ${{ matrix.extra_params }}
36
+ continue-on-error : ${{ matrix.continue-on-error }}
33
37
# Blocked by upstream support for WASM. See https://github.com/apple/swift-testing/issues/228
34
38
# - name: test
35
39
# run: |
You can’t perform that action at this time.
0 commit comments