blob: 088c4d7e55103ab33262a7c50efd8bc8b48ef4cd [file] [log] [blame]
Bram Moolenaar31ff2e12019-11-28 20:53:08 +01001env:
Bram Moolenaar9134f1e2019-11-29 20:26:13 +01002 CIRRUS_CLONE_DEPTH: 3
Bram Moolenaar31ff2e12019-11-28 20:53:08 +01003 FEATURES: huge
4
Philip H009e79c2022-05-06 16:10:50 +01005freebsd_task:
6 name: FreeBSD
7 matrix:
8 - name: FreeBSD 13.1
9 freebsd_instance:
10 image_family: freebsd-13-1
Philip H5e0c0042022-12-06 16:56:44 +000011 - name: FreeBSD 12.4
Philip H009e79c2022-05-06 16:10:50 +010012 freebsd_instance:
Philip H5e0c0042022-12-06 16:56:44 +000013 image_family: freebsd-12-4
Bram Moolenaar6e562fc2020-12-18 16:29:25 +010014 timeout_in: 20m
Bram Moolenaarea599a62019-11-27 21:55:41 +010015 install_script:
Philip H056a1c22022-05-01 20:43:50 +010016 - pkg update -f
17 - pkg install -y gettext
Bram Moolenaarea599a62019-11-27 21:55:41 +010018 build_script:
Bram Moolenaar31ff2e12019-11-28 20:53:08 +010019 - NPROC=$(getconf _NPROCESSORS_ONLN)
20 - ./configure --with-features=${FEATURES}
21 - make -j${NPROC}
Bram Moolenaarea599a62019-11-27 21:55:41 +010022 test_script:
Bram Moolenaarb86abad2020-08-01 16:08:19 +020023 - 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 H1d614082022-09-24 19:32:11 +010028
29macos_task:
ichizokd4590202022-10-06 16:56:44 +010030 name: macOS m1
Philip H1d614082022-09-24 19:32:11 +010031 macos_instance:
32 image: ghcr.io/cirruslabs/macos-ventura-xcode:latest
ichizokd4590202022-10-06 16:56:44 +010033 env:
34 # only run with clang, gcc is not real, it is a link to clang
35 CC: clang
Philip H1d614082022-09-24 19:32:11 +010036 timeout_in: 20m
37 install_script:
Philip H3ff71cd2022-10-05 20:41:01 +010038 - brew update
39 - brew install gettext libtool
40 build_script:
41 - NPROC=$(getconf _NPROCESSORS_ONLN)
42 - ./configure --with-features=${FEATURES}
43 - make -j${NPROC}
44 test_script:
45 - src/vim --version
46 - make test