-
-
Notifications
You must be signed in to change notification settings - Fork 30.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add FreeBSD build and test using Cirrus-CI
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
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
1 change: 1 addition & 0 deletions
1
Misc/NEWS.d/next/Tests/2023-09-05-21-42-54.gh-issue-91960.abClTs.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |