summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPovilas Kanapickas <povilas@radix.lt>2022-02-05 18:59:29 +0200
committerPovilas Kanapickas <povilas@radix.lt>2022-02-05 18:59:29 +0200
commite89e47ee5183f6f39fc266490ffce5f908f77e5e (patch)
tree9aa0b2f5be8f3bc4885c9e85c7487cf9756ff245
parent54cd349a7120ec6f067a74582fc43dd82bf89753 (diff)
gitlab-ci: Install libxcvt needed by newer X server
-rw-r--r--.gitlab-ci.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d6fa9db..198f3c8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -41,6 +41,11 @@ xserver-build:
stage: install xserver
script:
- export INSTDIR="$PWD/_inst"
+ - git clone https://gitlab.freedesktop.org/xorg/lib/libxcvt.git --depth 1 --branch=libxcvt-0.1.0
+ - pushd libxcvt > /dev/null
+ - meson _build
+ - ninja -j${FDO_CI_CONCURRENT:-4} -C _build install
+ - popd > /dev/null
- git clone --depth=1 https://gitlab.freedesktop.org/xorg/xserver
- pushd xserver > /dev/null
- meson -Dc_args="-fno-common" -Dprefix="$INSTDIR" $MESON_OPTIONS _build