Skip to content

Commit 2bef681

Browse files
committed
Remove 5.10 WASM support
1 parent 57797b1 commit 2bef681

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

.github/workflows/wasm.yml

+4-11
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,9 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
swift_version: ["5.10.0-RELEASE", "6.0-SNAPSHOT-2024-09-18-a"]
15+
swift_version: ["6.0.2-RELEASE"]
1616
os: [ubuntu-22.04]
1717
extra_params: [""]
18-
include:
19-
- swift_version: "6.0-SNAPSHOT-2024-09-18-a"
20-
continue-on-error: true
21-
- swift_version: "5.10.0-RELEASE"
22-
continue-on-error: false
2318
runs-on: ${{ matrix.os }}
2419
env:
2520
OPENSWIFTUI_WERROR: 1
@@ -35,8 +30,6 @@ jobs:
3530
- name: build
3631
run: |
3732
swift build --triple wasm32-unknown-wasi ${{ matrix.extra_params }}
38-
continue-on-error: ${{ matrix.continue-on-error }}
39-
# Blocked by upstream support for WASM. See https://github.com/apple/swift-testing/issues/228
40-
# - name: test
41-
# run: |
42-
# swift test --triple wasm32-unknown-wasi ${{ matrix.extra_params }}
33+
- name: test
34+
run: |
35+
swift test --triple wasm32-unknown-wasi ${{ matrix.extra_params }}

[email protected]

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ default:
6767
var sharedSwiftSettings: [SwiftSetting] = [
6868
.enableUpcomingFeature("BareSlashRegexLiterals"),
6969
.enableExperimentalFeature("AccessLevelOnImport"),
70-
// .enableUpcomingFeature("InternalImportsByDefault"),
70+
.enableUpcomingFeature("InternalImportsByDefault"),
7171
.define("OPENSWIFTUI_SUPPRESS_DEPRECATED_WARNINGS"),
7272
.define("OPENSWIFTUI_RELEASE_\(releaseVersion)"),
7373
]

0 commit comments

Comments
 (0)