Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: use VM to test BSD targets #528

Merged
merged 3 commits into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,64 @@ jobs:
- run: sudo xcode-select -switch /Applications/Xcode_15.2.app
- run: cargo test --no-run --target=aarch64-apple-visionos -Zbuild-std --features=std

freebsd:
name: FreeBSD VM Test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD
uses: vmactions/freebsd-vm@v1
with:
envs: 'RUSTFLAGS'
usesh: true
prepare: |
pkg install -y rust
run: cargo test

openbsd:
name: OpenBSD VM Test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Test in OpenBSD
uses: vmactions/openbsd-vm@v1
with:
envs: 'RUSTFLAGS'
usesh: true
prepare: |
pkg_add rust
run: cargo test

netbsd:
name: NetBSD VM Test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Test in NetBSD
uses: vmactions/netbsd-vm@v1
with:
envs: 'RUSTFLAGS'
usesh: true
prepare: |
/usr/sbin/pkg_add rust
run: cargo test

# This job currently fails:
# https://github.com/rust-random/getrandom/actions/runs/11405005618/job/31735653874?pr=528
# dragonflybsd:
# name: DragonflyBSD VM Test
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v4
# - name: Test in DragonflyBSD
# uses: vmactions/dragonflybsd-vm@v1
# with:
# envs: 'RUSTFLAGS'
# usesh: true
# prepare: |
# pkg install -y rust
# run: cargo test

cross-link:
name: Cross Build/Link
runs-on: ubuntu-22.04
Expand Down
Loading