-
Notifications
You must be signed in to change notification settings - Fork 91
84 lines (78 loc) · 2.03 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: CI
on:
push:
branches:
- main
- fix-wasm-ci
pull_request:
branches:
- '*'
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
# macos-14:
# name: macOS 14 (Xcode ${{ matrix.xcode }})
# runs-on: macOS-14
# strategy:
# matrix:
# xcode:
# - '15.4'
# steps:
# - uses: actions/checkout@v4
# - name: Select Xcode ${{ matrix.xcode }}
# run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
# - name: Print Swift version
# run: swift --version
# - name: Run tests (platforms)
# run: make test-platforms
# linux:
# name: Ubuntu
# runs-on: ubuntu-latest
# strategy:
# matrix:
# swift:
# - '5.10'
# steps:
# - uses: actions/checkout@v4
# - name: Run tests
# run: make test-linux SWIFT_VERSION=${{ matrix.swift }}
wasm:
name: Wasm
runs-on: macos-14
strategy:
matrix:
toolchain:
- wasm-DEVELOPMENT-SNAPSHOT-2024-07-08-a
steps:
- name: Cache toolchains
uses: actions/cache@v3
with:
path: |
~/Library/Developer/Toolchains
key: ${{ matrix.toolchain }}
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_15.4.app
- name: Select Swift version
run: echo '${{ matrix.toolchain }}' > .swift-version
- name: Build
run: swift run carton bundle --debug
# windows:
# name: Windows
# strategy:
# matrix:
# os: [windows-latest]
# config: ['debug', 'release']
# runs-on: ${{ matrix.os }}
# steps:
# - uses: compnerd/gha-setup-swift@main
# with:
# branch: swift-5.10-release
# tag: 5.10-RELEASE
# - uses: actions/checkout@v4
# - name: Build All Configurations
# run: swift build -c ${{ matrix.config }}
# - name: Run tests (debug only)
# run: swift test