Git fork

ci: update FreeBSD image to 14.3

FreeBSD 13.4 is no longer supported, and 13.5 will be the last
release from that series, so jump instead to 14.3 which should
be supported for another 10 months and will be at that point
the oldest supported release with the interim release of 15.

While at it, move some variables to the environment and make
sure to skip a git grep test that assumes glibc regex.

Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Carlo Marcelo Arenas Belón and committed by
Junio C Hamano
1e77de18 16bd9f20

+5 -3
+5 -3
.cirrus.yml
··· 5 5 env: 6 6 GIT_PROVE_OPTS: "--timer --jobs 10" 7 7 GIT_TEST_OPTS: "--no-chain-lint --no-bin-wrappers" 8 - MAKEFLAGS: "-j4" 8 + GIT_SKIP_TESTS: t7815.12 9 + MAKEFLAGS: -j4 9 10 DEFAULT_TEST_TARGET: prove 11 + DEFAULT_UNIT_TEST_TARGET: unit-tests-prove 10 12 DEVELOPER: 1 11 13 freebsd_instance: 12 - image_family: freebsd-13-4 14 + image_family: freebsd-14-3 13 15 memory: 2G 14 16 install_script: 15 17 pkg install -y gettext gmake perl5 ··· 19 21 build_script: 20 22 - su git -c gmake 21 23 test_script: 22 - - su git -c 'gmake DEFAULT_UNIT_TEST_TARGET=unit-tests-prove test unit-tests' 24 + - su git -c 'gmake test unit-tests'