2023-10-04 19:57:35 +02:00
|
|
|
env:
|
|
|
|
CIRRUS_CLONE_DEPTH: 3
|
|
|
|
FEATURES: huge
|
|
|
|
|
|
|
|
freebsd_task:
|
|
|
|
name: FreeBSD
|
|
|
|
matrix:
|
2024-11-25 10:03:34 +01:00
|
|
|
- name: FreeBSD 14.2
|
2023-10-04 19:57:35 +02:00
|
|
|
freebsd_instance:
|
2024-11-25 10:03:34 +01:00
|
|
|
image_family: freebsd-14-2
|
2023-10-04 19:57:35 +02:00
|
|
|
timeout_in: 20m
|
|
|
|
install_script:
|
|
|
|
- pkg install -y gettext
|
|
|
|
build_script:
|
|
|
|
- NPROC=$(getconf _NPROCESSORS_ONLN)
|
|
|
|
- ./configure --with-features=${FEATURES}
|
|
|
|
- make -j${NPROC}
|
|
|
|
test_script:
|
|
|
|
- src/vim --version
|
|
|
|
# run tests as user "cirrus" instead of root
|
|
|
|
- pw useradd cirrus -m
|
|
|
|
- chown -R cirrus:cirrus .
|
|
|
|
- sudo -u cirrus make test
|
2024-09-19 19:48:02 +02:00
|
|
|
on_failure:
|
2024-11-02 15:51:14 +01:00
|
|
|
test_artifacts:
|
2024-09-19 19:48:02 +02:00
|
|
|
name: "Cirrus-CI-freebsd-failed-tests"
|
|
|
|
path: |
|
2024-11-02 15:51:14 +01:00
|
|
|
runtime/indent/testdir/*.fail
|
2024-10-14 21:24:03 +02:00
|
|
|
runtime/syntax/testdir/failed/*
|
|
|
|
src/testdir/failed/*
|
2024-09-19 19:48:02 +02:00
|
|
|
type: application/octet-stream
|