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
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:
#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