-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (67 loc) · 1.88 KB
/
Copy pathci.yml
File metadata and controls
84 lines (67 loc) · 1.88 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
name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
macos:
name: build + test (macOS)
runs-on: macos-26
env:
XCODE_PATH: /Applications/Xcode_26.5.app/Contents/Developer
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s "$XCODE_PATH"
- name: Show toolchain
run: |
swift --version
xcodebuild -version
- name: Build
run: swift build -v
- name: Test
run: swift test --parallel
linux:
name: build + test (Linux, swift:latest)
runs-on: ubuntu-latest
container:
image: swift:latest
steps:
- uses: actions/checkout@v4
- name: Show toolchain
run: swift --version
- name: Build
run: swift build -v
- name: Test
run: swift test --parallel
lint:
name: swift-format lint
runs-on: macos-26
env:
XCODE_PATH: /Applications/Xcode_26.5.app/Contents/Developer
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s "$XCODE_PATH"
- name: Lint
run: swift format lint --recursive --strict Sources Tests Package.swift
benchmarks:
name: benchmarks (release, smoke)
runs-on: macos-26
env:
XCODE_PATH: /Applications/Xcode_26.5.app/Contents/Developer
# Benchmarks have machine-sensitive thresholds. Run them on macOS for
# signal but do not gate merges on the result yet -- surface failures
# for review rather than blocking the build.
continue-on-error: true
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s "$XCODE_PATH"
- name: Run benchmarks
run: swift run -c release LifetimeBenchmarks