Skip to content

Commit

Permalink
Add a FreeBSD 14.0 CI build
Browse files Browse the repository at this point in the history
cross-platform-actions/action now supports this version.
  • Loading branch information
dfandrich committed Feb 29, 2024
1 parent 17e2324 commit 437ec88
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: 'build & test on FreeBSD'
uses: cross-platform-actions/action@v0.22.0
uses: cross-platform-actions/action@v0.23.0
with:
operating_system: "freebsd"
version: "13.2"
Expand All @@ -153,3 +153,20 @@ jobs:
sudo pkg update -f && sudo pkg install -y groff
make linux LINUX_CC=cc
make test
freebsd-14:
name: 'FreeBSD 14.0 on x86_64'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 'build & test on FreeBSD'
uses: cross-platform-actions/[email protected]
with:
operating_system: "freebsd"
version: "10.0"
architecture: "x86_64"
run: |
# heirloom-tools has the original nroff, but it isn't working with -man
sudo pkg update -f && sudo pkg install -y groff
make linux LINUX_CC=cc
make test

0 comments on commit 437ec88

Please sign in to comment.