Skip to content

Commit

Permalink
Add FreeBSD build and test using Cirrus-CI
Browse files Browse the repository at this point in the history
Cirrus-CI is a hosted CI service that supports FreeBSD, Linux, macOS,
and Winodws.  Add a .cirrus.yml to provide CI coverage on pull requests
for FreeBSD 12.3 and 13.0.
  • Loading branch information
emaste committed Apr 29, 2022
1 parent 89c6b2b commit 70dfa9d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
freebsd_task:
freebsd_instance:
matrix:
- image: freebsd-12-3-release-amd64
- image: freebsd-13-0-release-amd64
build_script:
- mkdir build
- cd build
- ../configure
- make -j$(sysctl -n hw.ncpu)
test_script:
- cd build
# dtrace fails to build on FreeBSD - see gh-73263
- make test TESTOPTS="-u-network -x test_dtrace"

0 comments on commit 70dfa9d

Please sign in to comment.