Skip to content

Commit 97ad1d1

Browse files
committed
wip
1 parent 6fcdb45 commit 97ad1d1

File tree

1 file changed

+98
-98
lines changed

1 file changed

+98
-98
lines changed

.github/workflows/ci.yml

Lines changed: 98 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -15,103 +15,103 @@ concurrency:
1515
cancel-in-progress: true
1616

1717
jobs:
18-
macos-15:
19-
strategy:
20-
matrix:
21-
config:
22-
- debug
23-
- release
24-
xcode:
25-
- '16.2'
26-
name: macOS 15
27-
runs-on: macos-15
28-
steps:
29-
- uses: actions/checkout@v4
30-
- name: Select Xcode
31-
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
32-
- name: Run tests
33-
run: make test-${{ matrix.config }}
18+
# macos-15:
19+
# strategy:
20+
# matrix:
21+
# config:
22+
# - debug
23+
# - release
24+
# xcode:
25+
# - '16.2'
26+
# name: macOS 15
27+
# runs-on: macos-15
28+
# steps:
29+
# - uses: actions/checkout@v4
30+
# - name: Select Xcode
31+
# run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
32+
# - name: Run tests
33+
# run: make test-${{ matrix.config }}
3434

35-
macos-14:
36-
strategy:
37-
matrix:
38-
config:
39-
- debug
40-
- release
41-
xcode:
42-
- 15.2
43-
- 15.4
44-
name: macOS 14
45-
runs-on: macos-14
46-
steps:
47-
- uses: actions/checkout@v4
48-
- name: Select Xcode
49-
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
50-
- name: Run tests
51-
run: make test-${{ matrix.config }}
35+
# macos-14:
36+
# strategy:
37+
# matrix:
38+
# config:
39+
# - debug
40+
# - release
41+
# xcode:
42+
# - 15.2
43+
# - 15.4
44+
# name: macOS 14
45+
# runs-on: macos-14
46+
# steps:
47+
# - uses: actions/checkout@v4
48+
# - name: Select Xcode
49+
# run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
50+
# - name: Run tests
51+
# run: make test-${{ matrix.config }}
5252

53-
library-evolution:
54-
name: Library evolution
55-
runs-on: macos-15
56-
steps:
57-
- uses: actions/checkout@v4
58-
- name: Select Xcode
59-
run: sudo xcode-select -s /Applications/Xcode_16.2.app
60-
- name: Run tests
61-
run: make build-for-library-evolution
53+
# library-evolution:
54+
# name: Library evolution
55+
# runs-on: macos-15
56+
# steps:
57+
# - uses: actions/checkout@v4
58+
# - name: Select Xcode
59+
# run: sudo xcode-select -s /Applications/Xcode_16.2.app
60+
# - name: Run tests
61+
# run: make build-for-library-evolution
6262

63-
examples:
64-
strategy:
65-
matrix:
66-
config:
67-
- Debug
68-
- Release
69-
xcode:
70-
- '16.2'
71-
name: Examples
72-
runs-on: macos-15
73-
steps:
74-
- uses: actions/checkout@v4
75-
- name: Select Xcode
76-
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
77-
- name: Run tests
78-
run: make CONFIG=${{ matrix.config }} test-examples
63+
# examples:
64+
# strategy:
65+
# matrix:
66+
# config:
67+
# - Debug
68+
# - Release
69+
# xcode:
70+
# - '16.2'
71+
# name: Examples
72+
# runs-on: macos-15
73+
# steps:
74+
# - uses: actions/checkout@v4
75+
# - name: Select Xcode
76+
# run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
77+
# - name: Run tests
78+
# run: make CONFIG=${{ matrix.config }} test-examples
7979

80-
linux:
81-
strategy:
82-
matrix:
83-
config:
84-
- debug
85-
- release
86-
name: Linux
87-
runs-on: ubuntu-latest
88-
container: swift:6.0.3
89-
steps:
90-
- uses: actions/checkout@v4
91-
- name: Install dependencies
92-
run: apt-get update && apt-get install -y build-essential libcurl4-openssl-dev
93-
- name: Run tests
94-
run: make test-${{ matrix.config }}
95-
- name: Build for static-stdlib
96-
run: make CONFIG=${{ matrix.config }} build-for-static-stdlib
80+
# linux:
81+
# strategy:
82+
# matrix:
83+
# config:
84+
# - debug
85+
# - release
86+
# name: Linux
87+
# runs-on: ubuntu-latest
88+
# container: swift:6.0.3
89+
# steps:
90+
# - uses: actions/checkout@v4
91+
# - name: Install dependencies
92+
# run: apt-get update && apt-get install -y build-essential libcurl4-openssl-dev
93+
# - name: Run tests
94+
# run: make test-${{ matrix.config }}
95+
# - name: Build for static-stdlib
96+
# run: make CONFIG=${{ matrix.config }} build-for-static-stdlib
9797

98-
wasm:
99-
name: Wasm
100-
runs-on: ubuntu-latest
101-
steps:
102-
- uses: actions/checkout@v4
103-
- uses: bytecodealliance/actions/wasmtime/setup@v1
104-
- name: Install Swift and Swift SDK for WebAssembly
105-
run: |
106-
PREFIX=/opt/swift
107-
set -ex
108-
curl -f -o /tmp/swift.tar.gz "https://download.swift.org/swift-6.0.2-release/ubuntu2204/swift-6.0.2-RELEASE/swift-6.0.2-RELEASE-ubuntu22.04.tar.gz"
109-
sudo mkdir -p $PREFIX; sudo tar -xzf /tmp/swift.tar.gz -C $PREFIX --strip-component 1
110-
$PREFIX/usr/bin/swift sdk install https://github.com/swiftwasm/swift/releases/download/swift-wasm-6.0.2-RELEASE/swift-wasm-6.0.2-RELEASE-wasm32-unknown-wasi.artifactbundle.zip --checksum 6ffedb055cb9956395d9f435d03d53ebe9f6a8d45106b979d1b7f53358e1dcb4
111-
echo "$PREFIX/usr/bin" >> $GITHUB_PATH
98+
# wasm:
99+
# name: Wasm
100+
# runs-on: ubuntu-latest
101+
# steps:
102+
# - uses: actions/checkout@v4
103+
# - uses: bytecodealliance/actions/wasmtime/setup@v1
104+
# - name: Install Swift and Swift SDK for WebAssembly
105+
# run: |
106+
# PREFIX=/opt/swift
107+
# set -ex
108+
# curl -f -o /tmp/swift.tar.gz "https://download.swift.org/swift-6.0.2-release/ubuntu2204/swift-6.0.2-RELEASE/swift-6.0.2-RELEASE-ubuntu22.04.tar.gz"
109+
# sudo mkdir -p $PREFIX; sudo tar -xzf /tmp/swift.tar.gz -C $PREFIX --strip-component 1
110+
# $PREFIX/usr/bin/swift sdk install https://github.com/swiftwasm/swift/releases/download/swift-wasm-6.0.2-RELEASE/swift-wasm-6.0.2-RELEASE-wasm32-unknown-wasi.artifactbundle.zip --checksum 6ffedb055cb9956395d9f435d03d53ebe9f6a8d45106b979d1b7f53358e1dcb4
111+
# echo "$PREFIX/usr/bin" >> $GITHUB_PATH
112112

113-
- name: Build
114-
run: swift build --target IssueReporting --swift-sdk wasm32-unknown-wasi -Xlinker -z -Xlinker stack-size=$((1024 * 1024))
113+
# - name: Build
114+
# run: swift build --target IssueReporting --swift-sdk wasm32-unknown-wasi -Xlinker -z -Xlinker stack-size=$((1024 * 1024))
115115

116116
windows:
117117
name: Windows
@@ -136,10 +136,10 @@ jobs:
136136
- name: Run tests (debug only)
137137
run: swift test -windows-sdk-version 10.0.26100.0
138138

139-
android:
140-
name: Android
141-
runs-on: ubuntu-latest
142-
steps:
143-
- uses: actions/checkout@v4
144-
- name: "Test Swift Package on Android"
145-
uses: skiptools/swift-android-action@v2
139+
# android:
140+
# name: Android
141+
# runs-on: ubuntu-latest
142+
# steps:
143+
# - uses: actions/checkout@v4
144+
# - name: "Test Swift Package on Android"
145+
# uses: skiptools/swift-android-action@v2

0 commit comments

Comments
 (0)