@@ -36,60 +36,41 @@ jobs:
3636 - name : Run tests
3737 run : make test-${{ matrix.variation }}
3838
39- library-15-4-compatibility :
40- runs-on : macos-14
41- strategy :
42- matrix :
43- xcode :
44- - ' 15.4'
45- ios_version :
46- - ' 17.5'
47- variation :
48- - ios
49- steps :
50- - uses : actions/checkout@v4
51- - name : Select Xcode ${{ matrix.xcode }}
52- run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
53- - name : Skip macro validation
54- run : defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
55- - name : Run tests
56- run : make IOS_VERSION=${{matrix.ios_version}} test-${{ matrix.variation }}
57-
58- library-evolution :
59- name : Library Evolution
60- runs-on : macos-15
61- strategy :
62- matrix :
63- xcode :
64- - ' 16.2'
65- steps :
66- - uses : actions/checkout@v4
67- - name : Select Xcode ${{ matrix.xcode }}
68- run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
69- - name : Skip macro validation
70- run : defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
71- - name : Build for Library Evolution
72- run : make build-for-library-evolution
73-
74- wasm :
75- name : Wasm
76- runs-on : ubuntu-latest
77- steps :
78- - uses : actions/checkout@v4
79- - uses : bytecodealliance/actions/wasmtime/setup@v1
80- - name : Install Swift and Swift SDK for WebAssembly
81- run : |
82- PREFIX=/opt/swift
83- set -ex
84- curl -f -o /tmp/swift.tar.gz "https://download.swift.org/swift-6.0.3-release/ubuntu2204/swift-6.0.3-RELEASE/swift-6.0.3-RELEASE-ubuntu22.04.tar.gz"
85- sudo mkdir -p $PREFIX; sudo tar -xzf /tmp/swift.tar.gz -C $PREFIX --strip-component 1
86- $PREFIX/usr/bin/swift sdk install https://github.com/swiftwasm/swift/releases/download/swift-wasm-6.0.3-RELEASE/swift-wasm-6.0.3-RELEASE-wasm32-unknown-wasi.artifactbundle.zip --checksum 31d3585b06dd92de390bacc18527801480163188cd7473f492956b5e213a8618
87- echo "$PREFIX/usr/bin" >> $GITHUB_PATH
39+ # library-evolution:
40+ # name: Library Evolution
41+ # runs-on: macos-15
42+ # strategy:
43+ # matrix:
44+ # xcode:
45+ # - '16.2'
46+ # steps:
47+ # - uses: actions/checkout@v4
48+ # - name: Select Xcode ${{ matrix.xcode }}
49+ # run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
50+ # - name: Skip macro validation
51+ # run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
52+ # - name: Build for Library Evolution
53+ # run: make build-for-library-evolution
8854
89- - name : Build tests
90- run : swift build --swift-sdk wasm32-unknown-wasi --build-tests -Xlinker -z -Xlinker stack-size=$((1024 * 1024))
91- - name : Run tests
92- run : wasmtime --dir . .build/debug/swift-navigationPackageTests.wasm
55+ # wasm:
56+ # name: Wasm
57+ # runs-on: ubuntu-latest
58+ # steps:
59+ # - uses: actions/checkout@v4
60+ # - uses: bytecodealliance/actions/wasmtime/setup@v1
61+ # - name: Install Swift and Swift SDK for WebAssembly
62+ # run: |
63+ # PREFIX=/opt/swift
64+ # set -ex
65+ # curl -f -o /tmp/swift.tar.gz "https://download.swift.org/swift-6.0.3-release/ubuntu2204/swift-6.0.3-RELEASE/swift-6.0.3-RELEASE-ubuntu22.04.tar.gz"
66+ # sudo mkdir -p $PREFIX; sudo tar -xzf /tmp/swift.tar.gz -C $PREFIX --strip-component 1
67+ # $PREFIX/usr/bin/swift sdk install https://github.com/swiftwasm/swift/releases/download/swift-wasm-6.0.3-RELEASE/swift-wasm-6.0.3-RELEASE-wasm32-unknown-wasi.artifactbundle.zip --checksum 31d3585b06dd92de390bacc18527801480163188cd7473f492956b5e213a8618
68+ # echo "$PREFIX/usr/bin" >> $GITHUB_PATH
69+ #
70+ # - name: Build tests
71+ # run: swift build --swift-sdk wasm32-unknown-wasi --build-tests -Xlinker -z -Xlinker stack-size=$((1024 * 1024))
72+ # - name: Run tests
73+ # run: wasmtime --dir . .build/debug/swift-navigationPackageTests.wasm
9374
9475 # windows:
9576 # name: Windows
0 commit comments