File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Sources/WasmTransformer/Readers Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -57,23 +57,25 @@ jobs:
57
57
run : swift test --enable-test-discovery
58
58
59
59
macos-unit-tests :
60
- runs-on : macos-latest
60
+ runs-on : macos-12
61
61
needs : build-fixtures
62
62
strategy :
63
63
matrix :
64
+ xcode : ["Xcode_14.0", "Xcode_13.4.1", "Xcode_13.2.1"]
64
65
toolchain-version :
65
66
- swift-wasm-5.3.0-RELEASE
66
67
- swift-wasm-5.4.0-RELEASE
67
68
- swift-wasm-5.5.0-RELEASE
68
69
- swift-wasm-5.6.0-RELEASE
70
+
69
71
steps :
70
72
- uses : actions/checkout@v2
71
73
- uses : actions/download-artifact@v2
72
74
with :
73
75
name : test-fixtures-${{ matrix.toolchain-version }}
74
76
path : Fixtures/build
75
77
- name : Select Xcode toolchain
76
- run : sudo xcode-select -s /Applications/Xcode_13.2.1. app/Contents/Developer/
78
+ run : sudo xcode-select -s /Applications/${{ matrix.xcode }}. app/Contents/Developer
77
79
- name : Install dependencies
78
80
run : brew install wabt
79
81
- name : Run unit tests
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public struct VectorSectionIterator<Reader: VectorSectionReader>: IteratorProtoc
26
26
}
27
27
}
28
28
29
- extension VectorSectionReader {
29
+ extension VectorSectionReader where Iterator == VectorSectionIterator < Self > {
30
30
__consuming public func makeIterator( ) -> VectorSectionIterator < Self > {
31
31
VectorSectionIterator ( reader: self , count: count)
32
32
}
You can’t perform that action at this time.
0 commit comments