summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorDavid Heidelberg <david.heidelberg@collabora.com>2023-05-03 01:01:36 +0200
committerMarge Bot <emma+marge@anholt.net>2023-05-14 22:16:28 +0000
commitad7ff4c25bab1ca200360731cfad2d82faebda20 (patch)
tree6cc0c57f2297c6adac670359e2ca04f9ec73dbc8 /.gitlab-ci
parent1671b5fd1f3ed8c86b482187050a368986259e0c (diff)
downloadmesa-ad7ff4c25bab1ca200360731cfad2d82faebda20.tar.gz
ci/skqp: handle all warnings printed with clang >= 14
Useful for the https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21977 Reviewed-by: Guilherme Gallo <guilherme.gallo@collabora.com> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22808>
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/container/build-skqp_base.gn14
1 files changed, 13 insertions, 1 deletions
diff --git a/.gitlab-ci/container/build-skqp_base.gn b/.gitlab-ci/container/build-skqp_base.gn
index 3df11647a3a..472b44fb8e4 100644
--- a/.gitlab-ci/container/build-skqp_base.gn
+++ b/.gitlab-ci/container/build-skqp_base.gn
@@ -1,7 +1,12 @@
cc = "clang"
cxx = "clang++"
-extra_cflags = [ "-DSK_ENABLE_DUMP_GPU", "-DSK_BUILD_FOR_SKQP" ]
+extra_cflags = [
+ "-Wno-error",
+
+ "-DSK_ENABLE_DUMP_GPU",
+ "-DSK_BUILD_FOR_SKQP"
+ ]
extra_cflags_cc = [
"-Wno-error",
@@ -22,6 +27,13 @@ extra_cflags_cc = [
"-Wno-suggest-destructor-override",
"-Wno-return-std-move-in-c++11",
"-Wno-extra-semi-stmt",
+ "-Wno-reserved-identifier",
+ "-Wno-bitwise-instead-of-logical",
+ "-Wno-reserved-identifier",
+ "-Wno-psabi",
+ "-Wno-unused-but-set-variable",
+ "-Wno-sizeof-array-div",
+ "-Wno-string-concatenation",
]
cc_wrapper = "ccache"