gitlab-ci: update FreeBSD CI image to 13.1

FreeBSD 13.0 has reached EOL and it appears packages
are built against a newer baseline now, so we end up
with missing symbol errors:
ld-elf.so.1: /lib/libc.so.7: version FBSD_1.7 required by /usr/local/lib/libpython3.9.so.1.0 not found

It also appears that the fdpass test still fails on 13.1, so update the
condition to less than 14.0
This commit is contained in:
Alex Richardson 2022-09-21 08:33:33 +00:00
parent 546617d23c
commit 93203e9524
2 changed files with 4 additions and 4 deletions

View file

@ -71,8 +71,8 @@ variables:
variables:
BUILD_OS: freebsd
BUILD_ARCH: "x86_64"
FDO_DISTRIBUTION_VERSION: '13.0'
FDO_DISTRIBUTION_TAG: '2022-08-09.0' # Bump this version on every ci-install.sh change
FDO_DISTRIBUTION_VERSION: '13.1'
FDO_DISTRIBUTION_TAG: '2022-09-21.0' # Bump this version on every ci-install.sh change
FDO_REPO_SUFFIX: "$BUILD_OS/$BUILD_ARCH"
.cmake-common:

View file

@ -754,9 +754,9 @@ test_odd_limit (Fixture *f,
#ifdef __FreeBSD__
g_test_message ("Running test on FreeBSD %d...", getosreldate ());
if (GPOINTER_TO_INT (data) == 0 && getosreldate () < 1301000)
if (GPOINTER_TO_INT (data) == 0 && getosreldate () < 1400000)
{
g_test_skip ("This test fails on FreeBSD < 13.1");
g_test_skip ("This test fails on FreeBSD < 14.0");
return;
}
#endif