CI: Bump FreeBSD version to 14.2

FreeBSD 13.1 has been EOL since July 2023, but because there are
apparently no FreeBSD users among the dbus maintainers, nobody noticed.

dbus/dbus#308 is still present in FreeBSD 14.2, so remove the version
check when skipping that particular test.

Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
Simon McVittie 2025-02-27 16:44:37 +00:00
parent b4be89b9df
commit 2cc490f460
2 changed files with 4 additions and 4 deletions

View file

@ -81,8 +81,8 @@ variables:
variables:
BUILD_OS: freebsd
BUILD_ARCH: "x86_64"
FDO_DISTRIBUTION_VERSION: '13.1'
FDO_DISTRIBUTION_TAG: "2025-02-27.0-$UPSTREAM_BRANCH"
FDO_DISTRIBUTION_VERSION: '14.2'
FDO_DISTRIBUTION_TAG: "2025-02-27.1-$UPSTREAM_BRANCH"
FDO_REPO_SUFFIX: "$BUILD_OS/$BUILD_ARCH"
.cmake-common:

View file

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