-
Notifications
You must be signed in to change notification settings - Fork 0
237 lines (223 loc) · 6.4 KB
/
full_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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
name: full CI
on:
push:
branches: [ "master" ]
merge_group:
pull_request:
types: [opened, synchronize, reopened]
jobs:
style_check:
name: Style check
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
run: sh ./ci/install-rust.sh
- name: Check style
run: sh ci/style.sh
build_channels_linux:
name: Build Channels Linux
runs-on: ubuntu-22.04
env:
OS: linux
strategy:
fail-fast: true
max-parallel: 2
matrix:
toolchain:
- stable
- 1.70.0
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
run: TOOLCHAIN=${{ matrix.toolchain }} sh ./ci/install-rust.sh
- name: Execute run.sh
run: TOOLCHAIN=${{ matrix.toolchain }} sh ./ci/run.sh
build_channels_macos:
name: Build Channels macOS
env:
OS: macos
strategy:
fail-fast: true
max-parallel: 2
matrix:
target:
- { toolchain: stable, os: macos-14 }
- { toolchain: 1.70.0, os: macos-14 }
runs-on: ${{ matrix.target.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
run: sh ./ci/install-rust.sh
- name: Execute build.sh
run: TOOLCHAIN=${{ matrix.target.toolchain }} sh ./ci/run.sh
build_channels_windows:
name: Build Channels Windows
runs-on: windows-2022
env:
OS: windows
strategy:
fail-fast: true
matrix:
toolchain:
- stable
- 1.70.0
target:
- x86_64-pc-windows-msvc
steps:
- uses: actions/checkout@v4
- name: Self-update rustup
run: TARGET=${{ matrix.target }} sh ./ci/install-rust.sh
shell: bash
- name: Execute build.sh
run: TOOLCHAIN=${{ matrix.toolchain }} sh ./ci/run.sh
shell: bash
build_channels_dragonflybsd:
name: Build Channels DragonFlyBSD
runs-on: ubuntu-latest
env:
OS: dragonfly
strategy:
fail-fast: true
matrix:
toolchain:
- stable # Note: not actually stable, just current rustc version for DragonFlyBSD 6.4
steps:
- uses: actions/checkout@v4
- name: Test in DragonFlyBSD
id: dragonflybsd-ci
uses: vmactions/dragonflybsd-vm@v1
with:
release: "6.4.0"
envs: 'OS'
usesh: true
# DragonFly BSD does not have TAP interfaces by default; use kldload if_tap
prepare: |
pkg install -y sudo
pkg install -y rust
pkg upgrade -y
kldload if_tap
run: |
TOOLCHAIN=${{ matrix.toolchain }} sh ./ci/run.sh
build_channels_openbsd:
name: Build Channels OpenBSD
runs-on: ubuntu-latest
env:
OS: openbsd
strategy:
fail-fast: true
matrix:
toolchain:
- stable # Note: not actually stable, just current rustc version for OpenBSD 7.5
steps:
- uses: actions/checkout@v4
- name: Test in OpenBSD
id: openbsd-ci
uses: vmactions/openbsd-vm@v1
with:
release: "7.5"
envs: 'OS'
usesh: true
prepare: |
pkg_add curl
pkg_add sudo-1.9.15.5
pkg_add rust
run: |
TOOLCHAIN=${{ matrix.toolchain }} sh ./ci/run.sh
build_channels_freebsd:
name: Build Channels FreeBSD
runs-on: ubuntu-latest
env:
OS: freebsd
strategy:
fail-fast: true
matrix:
toolchain:
- stable
- 1.70.0
steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD
id: freebsd-ci
uses: vmactions/freebsd-vm@v1
with:
envs: 'OS'
usesh: true
prepare: |
pkg install -y curl
pkg install -y sudo
curl https://sh.rustup.rs -sSf | sh -s -- -y
run: |
export PATH="$HOME/.cargo/bin:$PATH"
TARGET=${{ matrix.target }} sh ./ci/install-rust.sh
TOOLCHAIN=${{ matrix.toolchain }} sh ./ci/run.sh
build_channels_netbsd:
name: Build Channels NetBSD
runs-on: ubuntu-latest
env:
DEBUG: 1
OS: netbsd
strategy:
fail-fast: true
matrix:
toolchain:
- stable
- 1.70.0
steps:
- uses: actions/checkout@v4
- name: Test in NetBSD
id: netbsd-ci
uses: vmactions/netbsd-vm@v1
with:
envs: 'DEBUG OS'
usesh: true
prepare: |
/usr/sbin/pkg_add curl
/usr/sbin/pkg_add sudo
curl https://sh.rustup.rs -sSf | sh -s -- -y
run: |
export PATH="$HOME/.cargo/bin:$PATH"
TARGET=${{ matrix.target }} sh ./ci/install-rust.sh
TOOLCHAIN=${{ matrix.toolchain }} sh ./ci/run.sh
build_channels_arm_linux:
name: Build Channels ARM (Linux)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pguyot/arm-runner-action@v2
with:
image_additional_mb: 4096 # Enlarge raspi image by 4GB
commands: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
export PATH="$HOME/.cargo/bin:$PATH"
TOOLCHAIN=stable sh ./ci/install-rust.sh
TOOLCHAIN=stable OS=linux sh ./ci/run.sh
check_cfg:
name: "Check #[cfg]s"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
run: TOOLCHAIN=nightly sh ./ci/install-rust.sh
- name: Build with check-cfg
run: LIBC_CHECK_CFG=1 cargo build -Z unstable-options -Z check-cfg
# One job that "summarizes" the success state of this pipeline. This can then be added to branch
# protection, rather than having to add each job separately.
success:
name: success
runs-on: ubuntu-22.04
needs:
- style_check
- build_channels_linux
- build_channels_macos
- build_channels_windows
# Github branch protection is exceedingly silly and treats "jobs skipped because a dependency
# failed" as success. So we have to do some contortions to ensure the job fails if any of its
# dependencies fails.
if: always() # make sure this is never "skipped"
steps:
# Manually check the status of all dependencies. `if: failure()` does not work.
- name: check if any dependency failed
run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'
# TODO: when it comes time to add Solaris/IllumOS, add this to install TUN/TAP driver:
# `pkg-get install tap`