zeertzjq | 317468a | 2023-10-04 19:57:35 +0200 | [diff] [blame] | 1 | env: |
| 2 | CIRRUS_CLONE_DEPTH: 3 |
| 3 | FEATURES: huge |
| 4 | |
| 5 | freebsd_task: |
| 6 | name: FreeBSD |
| 7 | matrix: |
| 8 | - name: FreeBSD 14.0 |
| 9 | freebsd_instance: |
| 10 | image_family: freebsd-14-0 |
| 11 | timeout_in: 20m |
| 12 | install_script: |
| 13 | - pkg install -y gettext |
| 14 | build_script: |
| 15 | - NPROC=$(getconf _NPROCESSORS_ONLN) |
| 16 | - ./configure --with-features=${FEATURES} |
| 17 | - make -j${NPROC} |
| 18 | test_script: |
| 19 | - src/vim --version |
| 20 | # run tests as user "cirrus" instead of root |
| 21 | - pw useradd cirrus -m |
| 22 | - chown -R cirrus:cirrus . |
| 23 | - sudo -u cirrus make test |