From 31ff2e1b43f5c85fdabfcfce93192405e6e559e2 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 28 Nov 2019 20:53:08 +0100 Subject: patch 8.1.2354: Cirrus CI runs on another repository Problem: Cirrus CI runs on another repository. Solution: Run Cirrus CI on vim/vim. --- .cirrus.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to '.cirrus.yml') 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 -- cgit v1.2.3