Skip to content

Commit

Permalink
.github: run ci on net and freebsd too
Browse files Browse the repository at this point in the history
  • Loading branch information
Gottox committed Aug 2, 2023
1 parent c49a38d commit f465e13
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,30 @@ jobs:
run: |
ninja -C /tmp/build
build-openbsd:
build-cross:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- name: freebsd
version: '13.2'
install_cmd: pkg add
- name: openbsd
version: '7.3'
install_cmd: pkg_add
- name: netbsd
version: '9.3'
install_cmd: pkg_add
steps:
- uses: actions/checkout@v3
- uses: "cross-platform-actions/action@v0.15.0"
continue-on-error: true
with:
operating_system: openbsd
operating_system: ${{ matrix.os.name }}
architecture: x86-64
version: 7.2
version: ${{ matrix.os.version }}
run: |
sudo pkg_add git meson squashfs-tools curl lz4 xz zstd
sudo ${{ matrix.os.vinstall_cmd }} git meson squashfs-tools curl lz4 xz zstd
CC=clang meson setup /tmp/build \
-Dwerror=true \
-Dcurl=enabled \
Expand All @@ -115,7 +127,7 @@ jobs:
doxygen:
needs:
- build
- build-openbsd
- build-cross
- plain-build
- test
runs-on: ubuntu-latest
Expand Down

0 comments on commit f465e13

Please sign in to comment.