-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #292 from Gottox/add/cirrus-ci
Run FreeBSD tests on Cirrus CI
- Loading branch information
Showing
7 changed files
with
49 additions
and
16 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,30 @@ | ||
env: | ||
CIRRUS_CLONE_DEPTH: 1 | ||
|
||
freebsd_task: | ||
only_if: $CIRRUS_BRANCH == "main" | ||
freebsd_instance: | ||
image_family: freebsd-14-0 | ||
setup_script: | ||
- pkg install -y autoconf automake libtool pkgconf fusefs-libs | ||
- pkg install -y lzo2 liblz4 zstd meson git | ||
- pkg install -y squashfs-tools coreutils | ||
- kldload fusefs | ||
- sysctl vfs.usermount=1 | ||
build_script: | ||
- | | ||
meson setup build \ | ||
-Dwerror=true \ | ||
-Dexamples=true \ | ||
-Dzlib=enabled \ | ||
-Dlz4=enabled \ | ||
-Dlzma=enabled \ | ||
-Dzstd=enabled \ | ||
-Dthreads=enabled \ | ||
-Dfuse-old=enabled \ | ||
-Dtest=extended | ||
- meson compile -C build | ||
test_script: | ||
- MESON_TESTTHREADS=1 meson test --verbose -C build | ||
install_script: | ||
- meson install -C build |
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
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
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
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
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
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