Skip to content

Commit

Permalink
Create FreeBSD job
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmark committed Jan 28, 2024
1 parent 92e202c commit d41407c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,30 @@ 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 \
libiconv \
libtool \
readline
run: |
./bootstrap
CFLAGS="-I/usr/local/include -L/usr/local/lib -DLIBICONV_PLUG" ./configure
make -j $(nproc)

0 comments on commit d41407c

Please sign in to comment.