2019-12-20 10:11:45 +08:00
|
|
|
env:
|
|
|
|
CIRRUS_CLONE_DEPTH: 1
|
|
|
|
|
2024-02-01 03:13:25 +08:00
|
|
|
freebsd_task:
|
2021-08-13 04:22:00 +08:00
|
|
|
env:
|
|
|
|
GIT_PROVE_OPTS: "--timer --jobs 10"
|
|
|
|
GIT_TEST_OPTS: "--no-chain-lint --no-bin-wrappers"
|
|
|
|
MAKEFLAGS: "-j4"
|
|
|
|
DEFAULT_TEST_TARGET: prove
|
|
|
|
DEVELOPER: 1
|
2019-12-20 10:11:45 +08:00
|
|
|
freebsd_instance:
|
2024-09-21 04:14:09 +08:00
|
|
|
image_family: freebsd-13-4
|
2021-08-13 04:22:00 +08:00
|
|
|
memory: 2G
|
2019-12-20 10:11:45 +08:00
|
|
|
install_script:
|
|
|
|
pkg install -y gettext gmake perl5
|
|
|
|
create_user_script:
|
|
|
|
- pw useradd git
|
|
|
|
- chown -R git:git .
|
|
|
|
build_script:
|
|
|
|
- su git -c gmake
|
|
|
|
test_script:
|
2023-11-10 02:50:44 +08:00
|
|
|
- su git -c 'gmake DEFAULT_UNIT_TEST_TARGET=unit-tests-prove test unit-tests'
|