summaryrefslogtreecommitdiffstats
path: root/.cirrus.yml
diff options
context:
space:
mode:
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml13
1 files changed, 10 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 0e4a3d64a3..2aae80e399 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -1,9 +1,16 @@
+env:
+ #CIRRUS_CLONE_DEPTH: 1
+ FEATURES: huge
+
freebsd_12_task:
freebsd_instance:
image: freebsd-12-1-release-amd64
install_script:
- pkg install -y gettext gmake
+ pkg install -y gettext
build_script:
- - gmake
+ - NPROC=$(getconf _NPROCESSORS_ONLN)
+ - ./configure --with-features=${FEATURES}
+ - make -j${NPROC}
+ - src/vim --version
test_script:
- - gmake test
+ - make test