Skip to content

Commit

Permalink
.cirrus.yml: Add task for FreeBSD builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
octo committed Nov 26, 2023
1 parent 73524c2 commit 6c5db5d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,3 +209,23 @@ bleeding_edge_compilers_task:
- make -j2 -sk
tests_script:
- VALGRIND_OPTS="--errors-for-leak-kinds=definite" make -j2 -sk check || cat ./test-suite.log || false

freebsd_task:
freebsd_instance:
matrix:
- image_family: freebsd-13-2
allow_failures: false
pkg_install_script:
- >
pkg install --yes
autotools
bison
flex
pkgconf
configure_script:
- ./build.sh
- ./configure --disable-perl
build_script:
- make -j$(nproc) -sk
tests_script:
- VALGRIND_OPTS="--errors-for-leak-kinds=definite" make -j2 -sk check || cat ./test-suite.log && false

0 comments on commit 6c5db5d

Please sign in to comment.