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 | |
Philip H | 009e79c | 2022-05-06 16:10:50 +0100 | [diff] [blame] | 5 | freebsd_task: |
| 6 | name: FreeBSD |
| 7 | matrix: |
| 8 | - name: FreeBSD 13.1 |
| 9 | freebsd_instance: |
| 10 | image_family: freebsd-13-1 |
| 11 | - name: FreeBSD 12.3 |
| 12 | freebsd_instance: |
| 13 | image_family: freebsd-12-3 |
Bram Moolenaar | 6e562fc | 2020-12-18 16:29:25 +0100 | [diff] [blame] | 14 | timeout_in: 20m |
Bram Moolenaar | ea599a6 | 2019-11-27 21:55:41 +0100 | [diff] [blame] | 15 | install_script: |
Philip H | 056a1c2 | 2022-05-01 20:43:50 +0100 | [diff] [blame] | 16 | - pkg update -f |
| 17 | - pkg install -y gettext |
Bram Moolenaar | ea599a6 | 2019-11-27 21:55:41 +0100 | [diff] [blame] | 18 | build_script: |
Bram Moolenaar | 31ff2e1 | 2019-11-28 20:53:08 +0100 | [diff] [blame] | 19 | - NPROC=$(getconf _NPROCESSORS_ONLN) |
| 20 | - ./configure --with-features=${FEATURES} |
| 21 | - make -j${NPROC} |
Bram Moolenaar | ea599a6 | 2019-11-27 21:55:41 +0100 | [diff] [blame] | 22 | test_script: |
Bram Moolenaar | b86abad | 2020-08-01 16:08:19 +0200 | [diff] [blame] | 23 | - src/vim --version |
| 24 | # run tests as user "cirrus" instead of root |
| 25 | - pw useradd cirrus -m |
| 26 | - chown -R cirrus:cirrus . |
| 27 | - sudo -u cirrus make test |
Philip H | 1d61408 | 2022-09-24 19:32:11 +0100 | [diff] [blame] | 28 | |
| 29 | macos_task: |
Philip H | 3ff71cd | 2022-10-05 20:41:01 +0100 | [diff] [blame] | 30 | name: macOS (arm64 gcc) |
Philip H | 1d61408 | 2022-09-24 19:32:11 +0100 | [diff] [blame] | 31 | macos_instance: |
| 32 | image: ghcr.io/cirruslabs/macos-ventura-xcode:latest |
| 33 | timeout_in: 20m |
| 34 | install_script: |
Philip H | 3ff71cd | 2022-10-05 20:41:01 +0100 | [diff] [blame] | 35 | - brew update |
| 36 | - brew install gettext libtool |
| 37 | build_script: |
| 38 | - NPROC=$(getconf _NPROCESSORS_ONLN) |
| 39 | - ./configure --with-features=${FEATURES} |
| 40 | - make -j${NPROC} |
| 41 | test_script: |
| 42 | - src/vim --version |
| 43 | - make test |
| 44 | |
| 45 | macos_task: |
| 46 | name: macOS (arm64 clang) |
| 47 | macos_instance: |
| 48 | image: ghcr.io/cirruslabs/macos-ventura-xcode:latest |
| 49 | timeout_in: 20m |
| 50 | install_script: |
Philip H | 1d61408 | 2022-09-24 19:32:11 +0100 | [diff] [blame] | 51 | - brew update |
| 52 | - brew install gettext libtool |
| 53 | build_script: |
| 54 | - NPROC=$(getconf _NPROCESSORS_ONLN) |
Philip H | 7381c0c | 2022-09-26 20:17:26 +0100 | [diff] [blame] | 55 | - ./configure --with-features=${FEATURES} |
Philip H | 1d61408 | 2022-09-24 19:32:11 +0100 | [diff] [blame] | 56 | - make -j${NPROC} CC=clang |
| 57 | test_script: |
| 58 | - src/vim --version |
| 59 | - make CC=clang test |