File tree Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Original file line number Diff line number Diff line change @@ -216,6 +216,64 @@ jobs:
216
216
- run : sudo xcode-select -switch /Applications/Xcode_15.2.app
217
217
- run : cargo test --no-run --target=aarch64-apple-visionos -Zbuild-std --features=std
218
218
219
+ freebsd :
220
+ name : FreeBSD VM Test
221
+ runs-on : ubuntu-22.04
222
+ steps :
223
+ - uses : actions/checkout@v4
224
+ - name : Test in FreeBSD
225
+ uses : vmactions/freebsd-vm@v1
226
+ with :
227
+ envs : ' RUSTFLAGS'
228
+ usesh : true
229
+ prepare : |
230
+ pkg install -y rust
231
+ run : cargo test
232
+
233
+ openbsd :
234
+ name : OpenBSD VM Test
235
+ runs-on : ubuntu-22.04
236
+ steps :
237
+ - uses : actions/checkout@v4
238
+ - name : Test in OpenBSD
239
+ uses : vmactions/openbsd-vm@v1
240
+ with :
241
+ envs : ' RUSTFLAGS'
242
+ usesh : true
243
+ prepare : |
244
+ pkg_add rust
245
+ run : cargo test
246
+
247
+ netbsd :
248
+ name : NetBSD VM Test
249
+ runs-on : ubuntu-22.04
250
+ steps :
251
+ - uses : actions/checkout@v4
252
+ - name : Test in NetBSD
253
+ uses : vmactions/netbsd-vm@v1
254
+ with :
255
+ envs : ' RUSTFLAGS'
256
+ usesh : true
257
+ prepare : |
258
+ /usr/sbin/pkg_add rust
259
+ run : cargo test
260
+
261
+ # This job currently fails:
262
+ # https://github.com/rust-random/getrandom/actions/runs/11405005618/job/31735653874?pr=528
263
+ # dragonflybsd:
264
+ # name: DragonflyBSD VM Test
265
+ # runs-on: ubuntu-22.04
266
+ # steps:
267
+ # - uses: actions/checkout@v4
268
+ # - name: Test in DragonflyBSD
269
+ # uses: vmactions/dragonflybsd-vm@v1
270
+ # with:
271
+ # envs: 'RUSTFLAGS'
272
+ # usesh: true
273
+ # prepare: |
274
+ # pkg install -y rust
275
+ # run: cargo test
276
+
219
277
cross-link :
220
278
name : Cross Build/Link
221
279
runs-on : ubuntu-22.04
You can’t perform that action at this time.
0 commit comments