-
Notifications
You must be signed in to change notification settings - Fork 109
86 lines (79 loc) · 1.89 KB
/
Copy pathci.yml
File metadata and controls
86 lines (79 loc) · 1.89 KB
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
85
86
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
macos-26:
strategy:
matrix:
config:
- debug
- release
xcode:
- '26.5'
name: macOS 26
runs-on: macos-26
steps:
- uses: actions/checkout@v5
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run tests
run: swift test -c ${{ matrix.config }}
library-evolution:
name: Library evolution
runs-on: macos-26
steps:
- uses: actions/checkout@v5
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_26.5.app
- name: Run tests
run: make build-for-library-evolution
examples:
strategy:
matrix:
config:
- Debug
- Release
xcode:
- '26.5'
name: Examples
runs-on: macos-26
steps:
- uses: actions/checkout@v5
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run tests
run: make CONFIG=${{ matrix.config }} test-examples
linux:
strategy:
matrix:
config:
- debug
- release
name: Linux
runs-on: ubuntu-latest
container: swift:6.3
steps:
- uses: actions/checkout@v5
- name: Install dependencies
run: apt-get update && apt-get install -y build-essential libcurl4-openssl-dev
- name: Run tests
run: swift test -c ${{ matrix.config }}
- name: Build for static-stdlib
run: make CONFIG=${{ matrix.config }} build-for-static-stdlib
android:
name: Android
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: skiptools/swift-android-action@v2
with:
free-disk-space: true