cl: Fix missing OpenCL 3.0 definition
[piglit.git] / .gitlab-ci / build-wayland.sh
blobc74e845a480bf5958661331a77e9e2589313a780
1 #!/usr/bin/env bash
2 # shellcheck disable=SC2086 # we want word splitting
4 set -ex
6 # When changing this file, you need to bump the following .gitlab-ci.yml tag:
7 # FDO_DISTRIBUTION_TAG
9 export WAYLAND_PROTOCOLS_VERSION="1.24"
11 git clone https://gitlab.freedesktop.org/wayland/wayland-protocols
12 cd wayland-protocols
13 git checkout "$WAYLAND_PROTOCOLS_VERSION"
14 meson setup _build $EXTRA_MESON_ARGS
15 meson install -C _build
16 cd ..
17 rm -rf wayland-protocols