-
-
Notifications
You must be signed in to change notification settings - Fork 445
34 lines (30 loc) · 794 Bytes
/
ci-netbsd.yml
File metadata and controls
34 lines (30 loc) · 794 Bytes
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
# CI NetBSD GitHub Actions workflow for monolith
name: CI (NetBSD)
on:
pull_request:
branches: [ master ]
paths-ignore:
- 'assets/'
- 'dist/'
- 'snap/'
- 'Dockerfile'
- 'LICENSE'
- 'Makefile'
- 'monolith.nuspec'
- 'README.md'
jobs:
build_and_test:
runs-on: ubuntu-latest
name: Build and test (netbsd)
steps:
- name: "Checkout repository"
uses: actions/checkout@v4
- name: Test in NetBSD
uses: vmactions/netbsd-vm@v1
with:
usesh: true
prepare: |
/usr/sbin/pkg_add cwrappers gmake mktools pkgconf rust
run: |
cargo build --all --locked --verbose --no-default-features --features cli
cargo test --all --locked --verbose --no-default-features --features cli