aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci/debian-install.sh
blob: 256d665bc15c6621b277615513bd56741dfd23d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -eux

# Note: don't forget to bump FDO_DISTRIBUTION_TAG when editing this file!

git clone --branch 1.20.0 --depth=1 https://gitlab.freedesktop.org/wayland/wayland
cd wayland/
git show -s HEAD
meson build/ -Dtests=false -Ddocumentation=false
ninja -j${FDO_CI_CONCURRENT:-4} -C build/ install
cd ..
rm -rf wayland/

echo "/usr/local/lib" >/etc/ld.so.conf.d/local.conf
ldconfig