Skip to content

Commit

Permalink
Create FreeBSD job
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmark authored Jan 28, 2024
1 parent 92e202c commit 0202b27
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,28 @@ jobs:
run: ./configure
- name: Compile
run: make -j $(nproc)

build-freebsd:
name: "FreeBSD"
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- name: "Checkout repository"
uses: actions/checkout@v4
- name: "Build on VM"
uses: vmactions/[email protected]
with:
copyback: false
prepare: |
pkg install -y \
autoconf \
automake \
fusefs-libs \
gmp \
libgcrypt \
libtool
run: |
./bootstrap
CFLAGS="-I/usr/local/include -L/usr/local/lib" ./configure
make -j $(nproc)

0 comments on commit 0202b27

Please sign in to comment.