@@ -15,33 +15,33 @@ concurrency:
15
15
cancel-in-progress : true
16
16
17
17
jobs :
18
- macos-14 :
19
- name : macOS 14 (Xcode ${{ matrix.xcode }})
20
- runs-on : macOS-14
21
- strategy :
22
- matrix :
23
- xcode :
24
- - ' 15.4'
25
- steps :
26
- - uses : actions/checkout@v4
27
- - name : Select Xcode ${{ matrix.xcode }}
28
- run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
29
- - name : Print Swift version
30
- run : swift --version
31
- - name : Run tests (platforms)
32
- run : make test-platforms
18
+ # macos-14:
19
+ # name: macOS 14 (Xcode ${{ matrix.xcode }})
20
+ # runs-on: macOS-14
21
+ # strategy:
22
+ # matrix:
23
+ # xcode:
24
+ # - '15.4'
25
+ # steps:
26
+ # - uses: actions/checkout@v4
27
+ # - name: Select Xcode ${{ matrix.xcode }}
28
+ # run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
29
+ # - name: Print Swift version
30
+ # run: swift --version
31
+ # - name: Run tests (platforms)
32
+ # run: make test-platforms
33
33
34
- linux :
35
- name : Ubuntu
36
- runs-on : ubuntu-latest
37
- strategy :
38
- matrix :
39
- swift :
40
- - ' 5.10'
41
- steps :
42
- - uses : actions/checkout@v4
43
- - name : Run tests
44
- run : make test-linux SWIFT_VERSION=${{ matrix.swift }}
34
+ # linux:
35
+ # name: Ubuntu
36
+ # runs-on: ubuntu-latest
37
+ # strategy:
38
+ # matrix:
39
+ # swift:
40
+ # - '5.10'
41
+ # steps:
42
+ # - uses: actions/checkout@v4
43
+ # - name: Run tests
44
+ # run: make test-linux SWIFT_VERSION=${{ matrix.swift }}
45
45
46
46
wasm :
47
47
name : SwiftWasm
@@ -57,20 +57,20 @@ jobs:
57
57
- name : Run tests
58
58
run : wasmtime .build/debug/swift-custom-dumpPackageTests.wasm
59
59
60
- windows :
61
- name : Windows
62
- strategy :
63
- matrix :
64
- os : [windows-latest]
65
- config : ['debug', 'release']
66
- runs-on : ${{ matrix.os }}
67
- steps :
68
- - uses : compnerd/gha-setup-swift@main
69
- with :
70
- branch : swift-5.10-release
71
- tag : 5.10-RELEASE
72
- - uses : actions/checkout@v4
73
- - name : Build All Configurations
74
- run : swift build -c ${{ matrix.config }}
75
- - name : Run tests (debug only)
76
- run : swift test
60
+ # windows:
61
+ # name: Windows
62
+ # strategy:
63
+ # matrix:
64
+ # os: [windows-latest]
65
+ # config: ['debug', 'release']
66
+ # runs-on: ${{ matrix.os }}
67
+ # steps:
68
+ # - uses: compnerd/gha-setup-swift@main
69
+ # with:
70
+ # branch: swift-5.10-release
71
+ # tag: 5.10-RELEASE
72
+ # - uses: actions/checkout@v4
73
+ # - name: Build All Configurations
74
+ # run: swift build -c ${{ matrix.config }}
75
+ # - name: Run tests (debug only)
76
+ # run: swift test
0 commit comments