summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-08-29 13:56:17 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-08-29 13:57:45 -0700
commit3d4288fc03891b24ca86c6ed92e131feaa4ab227 (patch)
tree1d4972e085ae23a5f17e87f07223aa85e37ed0a0
parentd5b4c509a97104b920f72e748d224b3e4f9a0e0e (diff)
gitlab CI: use -Domap=enabled instead of true when building drm
Fixes CI build failure: meson.build:21:0: ERROR: Value "true" (of type "string") for combo option "Enable support for OMAP's experimental KMS API." is not one of the choices. Possible choices are (as string): "enabled", "disabled", "auto". Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a023de1..7966776 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -89,7 +89,7 @@ drm-build:
- export INSTDIR="$PWD/_inst"
- git clone --depth=1 https://gitlab.freedesktop.org/mesa/drm
- pushd drm > /dev/null
- - meson -Dprefix="$INSTDIR" -Domap=true _build
+ - meson -Dprefix="$INSTDIR" -Domap=enabled _build
- ninja -j${FDO_CI_CONCURRENT:-4} -C _build install
- popd > /dev/null
variables: