aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/others.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/others.yml b/.github/workflows/others.yml
index 562f9291..ea7d018a 100644
--- a/.github/workflows/others.yml
+++ b/.github/workflows/others.yml
@@ -21,6 +21,23 @@ jobs:
21 cmake --build build/ &&\ 21 cmake --build build/ &&\
22 ctest --test-dir build 22 ctest --test-dir build
23 23
24 freebsd:
25 runs-on: ubuntu-latest
26 name: FreeBSD
27 steps:
28 - uses: actions/checkout@v4
29 - name: FreeBSD
30 uses: vmactions/freebsd-vm@v1
31 with:
32 copyback: false
33 prepare: |
34 pkg install -y cmake gcc14 bzip2
35
36 run: |
37 cmake . -B build -DZLIB_BUILD_MINIZIP=ON -DMINIZIP_ENABLE_BZIP2=ON
38 cmake --build build/
39 ctest --test-dir build
40
24 netbsd: 41 netbsd:
25 runs-on: ubuntu-latest 42 runs-on: ubuntu-latest
26 name: NetBSD 43 name: NetBSD