File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -186,6 +186,34 @@ jobs:
186
186
- name : Execute run-docker.sh
187
187
run : sh ./ci/run-docker.sh ${{ matrix.target }}
188
188
189
+ build_channels_netbsd :
190
+ permissions :
191
+ contents : read # to fetch code (actions/checkout)
192
+
193
+ name : Build Channels NetBSD
194
+ runs-on : ubuntu-latest
195
+ env :
196
+ OS : netbsd
197
+ strategy :
198
+ fail-fast : true
199
+ steps :
200
+ - uses : actions/checkout@v4
201
+ - name : Run netbsd vm
202
+ id : netbsd-ci
203
+ uses : vmactions/netbsd-vm@v1
204
+ with :
205
+ envs : ' OS'
206
+ usesh : true
207
+ prepare : |
208
+ /usr/sbin/pkg_add curl
209
+ curl https://sh.rustup.rs -sSf --output rustup.sh
210
+ sh rustup.sh -y --default-toolchain nightly --profile=minimal
211
+ . $HOME/.cargo/env
212
+ run : |
213
+ . $HOME/.cargo/env
214
+ LIBC_CI=1 sh ci/run.sh x86_64-unknown-netbsd
215
+ sh ci/run.sh x86_64-unknown-netbsd
216
+
189
217
check_cfg :
190
218
name : " Check #[cfg]s"
191
219
runs-on : ubuntu-22.04
You can’t perform that action at this time.
0 commit comments