summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2020-09-09 22:21:14 +0200
committerMarge Bot <eric+marge@anholt.net>2020-09-10 14:13:37 +0000
commit2f62a44df0f694791d7c364940841e8682faeefc (patch)
tree32fbe14022aac7ab956efcec37024cfa9531f8ea /.gitlab-ci
parent52becd39a590cc8cac7bbe38282b27fc0a8ebbbf (diff)
ci: do not build libdrm for vc4, reedreno and etnaviv
They are using a in source tree version of the needed libdrm functionality or are shipping all needed headers in the source tree. Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com> Reviewed-by: Eric Anholt <eric@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6672>
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/build-libdrm.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/build-libdrm.sh b/.gitlab-ci/build-libdrm.sh
index 1a57041f6fe..9484fc36d8d 100644
--- a/.gitlab-ci/build-libdrm.sh
+++ b/.gitlab-ci/build-libdrm.sh
@@ -7,7 +7,7 @@ export LIBDRM_VERSION=libdrm-2.4.102
wget https://dri.freedesktop.org/libdrm/$LIBDRM_VERSION.tar.xz
tar -xvf $LIBDRM_VERSION.tar.xz && rm $LIBDRM_VERSION.tar.xz
cd $LIBDRM_VERSION
-meson build -D vc4=true -D freedreno=true -D etnaviv=true $EXTRA_MESON_ARGS
+meson build -D vc4=false -D freedreno=false -D etnaviv=false $EXTRA_MESON_ARGS
ninja -C build install
cd ..
rm -rf $LIBDRM_VERSION