gitlab: renable gst-build werror after msvc CI merge
authorMatthew Waters <matthew@centricular.com>
Mon, 26 Aug 2019 11:56:40 +0000 (21:56 +1000)
committerMatthew Waters <matthew@centricular.com>
Mon, 26 Aug 2019 11:58:24 +0000 (21:58 +1000)
31cec0a2459b38ae64d8bbb3f2060d2d86f8f86f removed --werror from the
default meson args but did not add it back in all the correct places

gitlab/ci_template.yml

index a3049de..df104da 100644 (file)
@@ -122,7 +122,7 @@ build fedora x86_64:
   stage: 'build'
   image: $FEDORA_IMAGE
   variables:
-    MESON_ARGS: "${DEFAULT_MESON_ARGS} -Dsharp=enabled -Domx=enabled -Dgst-omx:target=generic ${MESON_BUILDTYPE_ARGS}"
+    MESON_ARGS: "${DEFAULT_MESON_ARGS} -Dsharp=enabled -Domx=enabled -Dgst-omx:target=generic ${MESON_BUILDTYPE_ARGS} --werror"
   except:
     variables:
       - $CI_PROJECT_NAME == "gst-docs"
@@ -133,7 +133,7 @@ build nodebug fedora x86_64:
   stage: 'build'
   image: $FEDORA_IMAGE
   variables:
-    MESON_ARGS: "${DEFAULT_MESON_ARGS} -Dsharp=enabled -Dgstreamer:gst_debug=false -Domx=enabled -Dgst-omx:target=generic -Ddoc=enabled ${MESON_BUILDTYPE_ARGS}"
+    MESON_ARGS: "${DEFAULT_MESON_ARGS} -Dsharp=enabled -Dgstreamer:gst_debug=false -Domx=enabled -Dgst-omx:target=generic -Ddoc=enabled ${MESON_BUILDTYPE_ARGS} --werror"
 
 build static fedora x86_64:
   extends: 'build fedora x86_64'