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.4 and 13.2.
  • Loading branch information
emaste committed Sep 6, 2023
1 parent 6f8411c commit 2aa4f66
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
freebsd_task:
freebsd_instance:
matrix:
- image: freebsd-13-2-release-amd64
sysctl_script:
- sysctl net.inet.tcp.blackhole=0
- sysctl net.inet.udp.blackhole=0
configure_script:
- mkdir build
- cd build
- ../configure
pythoninfo_script:
- cd build && make pythoninfo
build_script:
- cd build && make -j$(sysctl -n hw.ncpu)
test_script:
- cd build
# dtrace fails to build on FreeBSD - see gh-73263
- make buildbottest TESTOPTS="-j0 -x test_dtrace"
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FreeBSD 13.2 CI coverage for pull requests is now provided by Cirrus-CI (a hosted CI service that supports Linux, macOS, Windows, and FreeBSD).

0 comments on commit 2aa4f66

Please sign in to comment.