Bram Moolenaar | 31ff2e1 | 2019-11-28 20:53:08 +0100 | [diff] [blame] | 1 | env: |
Bram Moolenaar | 9134f1e | 2019-11-29 20:26:13 +0100 | [diff] [blame] | 2 | CIRRUS_CLONE_DEPTH: 3 |
Bram Moolenaar | 31ff2e1 | 2019-11-28 20:53:08 +0100 | [diff] [blame] | 3 | FEATURES: huge |
| 4 | |
Bram Moolenaar | ea599a6 | 2019-11-27 21:55:41 +0100 | [diff] [blame] | 5 | freebsd_12_task: |
| 6 | freebsd_instance: |
| 7 | image: freebsd-12-1-release-amd64 |
| 8 | install_script: |
Bram Moolenaar | 31ff2e1 | 2019-11-28 20:53:08 +0100 | [diff] [blame] | 9 | pkg install -y gettext |
Bram Moolenaar | ea599a6 | 2019-11-27 21:55:41 +0100 | [diff] [blame] | 10 | build_script: |
Bram Moolenaar | 31ff2e1 | 2019-11-28 20:53:08 +0100 | [diff] [blame] | 11 | - NPROC=$(getconf _NPROCESSORS_ONLN) |
| 12 | - ./configure --with-features=${FEATURES} |
| 13 | - make -j${NPROC} |
Bram Moolenaar | ea599a6 | 2019-11-27 21:55:41 +0100 | [diff] [blame] | 14 | test_script: |
Bram Moolenaar | b86abad | 2020-08-01 16:08:19 +0200 | [diff] [blame] | 15 | - src/vim --version |
| 16 | # run tests as user "cirrus" instead of root |
| 17 | - pw useradd cirrus -m |
| 18 | - chown -R cirrus:cirrus . |
| 19 | - sudo -u cirrus make test |