aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2021-12-30 18:37:19 -0600
committerWilliam Hubbs <w.d.hubbs@gmail.com>2021-12-30 18:37:19 -0600
commitffa2e060431ef329d8a00397a7f10dd363f2b372 (patch)
tree867da5af4ad1e1b74bf22b5364eb723bf930d294
parent21d81ea5a9ab71decabaf795f903208b09ae0621 (diff)
use meson in cirrus ci
-rw-r--r--.cirrus.yml2
-rwxr-xr-xci/cirrus.sh6
2 files changed, 4 insertions, 4 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 3df706f8..81cc7554 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -11,6 +11,6 @@ test_task:
OS: FreeBSD
procfs_script: >
[ -f /proc/curproc ] || mount -t procfs proc /proc
- pkg_install_script: pkg install -y bash gawk gmake gsed
+ pkg_install_script: pkg install -y bash gawk gsed meson
gsed_hack_script: rm /usr/bin/sed && ln -s /usr/local/bin/gsed /usr/bin/sed
test_script: bash ci/cirrus.sh
diff --git a/ci/cirrus.sh b/ci/cirrus.sh
index e013623f..20adc9b7 100755
--- a/ci/cirrus.sh
+++ b/ci/cirrus.sh
@@ -16,6 +16,6 @@ set -x
# These are steps to run on Cirrus CI under a jailed FreeBSD system.
# See $TOP/.cirrus.yml for more info about the Cirrus CI setup.
-cpus=$(getconf NPROCESSORS_CONF || echo 1)
-gmake -j"${cpus}" -O
-gmake test
+meson build
+meson compile -C build
+# gmake test