-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: add FreeBSD build with Cirrus CI
As a first step for automatic FreeBSD testing add a build and install for FreeBSD versions 12.4, 13.2 and 14-snapshot using Cirrus CI. Reviewed-by: Jose Luis Duran Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Martin Matuska <[email protected]> Closes #15332
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
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,21 @@ | ||
env: | ||
CIRRUS_CLONE_DEPTH: 1 | ||
ARCH: amd64 | ||
|
||
build_task: | ||
matrix: | ||
freebsd_instance: | ||
image_family: freebsd-12-4 | ||
freebsd_instance: | ||
image_family: freebsd-13-2 | ||
freebsd_instance: | ||
image_family: freebsd-14-0-snap | ||
prepare_script: | ||
- pkg install -y autoconf automake libtool gettext-runtime gmake ksh93 py39-packaging py39-cffi py39-sysctl | ||
configure_script: | ||
- env MAKE=gmake ./autogen.sh | ||
- env MAKE=gmake ./configure --with-config="user" --with-python=3.9 | ||
build_script: | ||
- gmake -j `sysctl -n kern.smp.cpus` | ||
install_script: | ||
- gmake install |
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