gitlab: renable gst-build werror after msvc CI merge

31cec0a245 removed --werror from the
default meson args but did not add it back in all the correct places
This commit is contained in:
Matthew Waters 2019-08-26 21:56:40 +10:00
parent 072cf0122a
commit e5228dc810

View 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'