comparison .cirrus.yml @ 18728:9f1cf1458708 v8.1.2354

patch 8.1.2354: Cirrus CI runs on another repository Commit: https://github.com/vim/vim/commit/31ff2e1b43f5c85fdabfcfce93192405e6e559e2 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 28 20:53:08 2019 +0100 patch 8.1.2354: Cirrus CI runs on another repository Problem: Cirrus CI runs on another repository. Solution: Run Cirrus CI on vim/vim.
author Bram Moolenaar <Bram@vim.org>
date Thu, 28 Nov 2019 21:00:03 +0100
parents 3bc59131171f
children 97d534e17874
comparison
equal deleted inserted replaced
18727:4ce2720623a2 18728:9f1cf1458708
1 env:
2 #CIRRUS_CLONE_DEPTH: 1
3 FEATURES: huge
4
1 freebsd_12_task: 5 freebsd_12_task:
2 freebsd_instance: 6 freebsd_instance:
3 image: freebsd-12-1-release-amd64 7 image: freebsd-12-1-release-amd64
4 install_script: 8 install_script:
5 pkg install -y gettext gmake 9 pkg install -y gettext
6 build_script: 10 build_script:
7 - gmake 11 - NPROC=$(getconf _NPROCESSORS_ONLN)
12 - ./configure --with-features=${FEATURES}
13 - make -j${NPROC}
14 - src/vim --version
8 test_script: 15 test_script:
9 - gmake test 16 - make test