gitlab-ci: Install pkg-config on FreeBSD

Without this change the autotools build system fails to find glib and
reports an error. The CMake build worked prior to this change since CMake
has fallback logic to find glib even without pkg-config.
This commit is contained in:
Alex Richardson 2022-08-08 21:21:18 +00:00 committed by Simon McVittie
parent d67132d3d0
commit 902260f6da
2 changed files with 2 additions and 1 deletions

View file

@ -72,7 +72,7 @@ variables:
BUILD_OS: freebsd
BUILD_ARCH: "x86_64"
FDO_DISTRIBUTION_VERSION: '13.0'
FDO_DISTRIBUTION_TAG: '2022-08-08.0' # Bump this version on every ci-install.sh change
FDO_DISTRIBUTION_TAG: '2022-08-08.1' # Bump this version on every ci-install.sh change
FDO_REPO_SUFFIX: "$BUILD_OS/$BUILD_ARCH"
.cmake-common:

View file

@ -323,6 +323,7 @@ case "$ci_distro" in
libtool
libX11
libxslt
pkgconf
xmlto
)
$sudo pkg install -y "${packages[@]}"