summaryrefslogtreecommitdiff
path: root/.gitlab-ci/fedora-install.sh
diff options
context:
space:
mode:
authorPovilas Kanapickas <povilas@radix.lt>2021-09-15 20:09:33 +0300
committerPeter Hutterer <peter.hutterer@who-t.net>2021-09-16 11:23:53 +1000
commit83312147716cfb4627cd9ae8e58ac5aec50e168f (patch)
tree9521b71c272846a69548bf597859c4d6fb98db8c /.gitlab-ci/fedora-install.sh
parent8588a19f63f9c17f66a83850e20955450c3098a2 (diff)
downloadxorg-driver-xf86-input-libinput-83312147716cfb4627cd9ae8e58ac5aec50e168f.tar.gz
gitlab-ci: Configure xorgproto build from source
We need newer xorgproto than what's in fedora as we depend on inputproto 2.3.99.1 or newer.
Diffstat (limited to '.gitlab-ci/fedora-install.sh')
-rwxr-xr-x.gitlab-ci/fedora-install.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/.gitlab-ci/fedora-install.sh b/.gitlab-ci/fedora-install.sh
new file mode 100755
index 0000000..1075330
--- /dev/null
+++ b/.gitlab-ci/fedora-install.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+# we require at least inputproto >= 2.3.99.1 which has been released in xorgproto 2021.5
+git clone https://gitlab.freedesktop.org/xorg/proto/xorgproto.git --depth 1 --branch=xorgproto-2021.5
+pushd xorgproto
+./autogen.sh
+make -j${FDO_CI_CONCURRENT:-4} install
+popd
+rm -rf xorgproto