diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-28 20:53:08 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-28 20:53:08 +0100 |
commit | 31ff2e1b43f5c85fdabfcfce93192405e6e559e2 (patch) | |
tree | 425d51fbad72c007bc157adc3d9928c87a0154fa /.cirrus.yml | |
parent | 5708079a6b144e68bf85503bc3a7779d3a7cc2a6 (diff) | |
download | vim-git-31ff2e1b43f5c85fdabfcfce93192405e6e559e2.tar.gz |
patch 8.1.2354: Cirrus CI runs on another repositoryv8.1.2354
Problem: Cirrus CI runs on another repository.
Solution: Run Cirrus CI on vim/vim.
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 0e4a3d64a..2aae80e39 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 |