summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2022-03-26 21:04:14 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2022-04-01 19:08:29 +0200
commit0b35ce09c94ef0482fe9d70d0fb2df45c7292906 (patch)
treeced6bd00ae768ade91eae58506c7a289d4407fa4
parentb19ccc41340238ce1e60fd702988609e41eafb4a (diff)
downloadpygobject-0b35ce09c94ef0482fe9d70d0fb2df45c7292906.tar.gz
CI: pass -Wno-error=deprecated-declarations for MSYS2
There are some glib deprecations that need fixing, but let's get CI green again first.
-rwxr-xr-x.gitlab-ci/test-msys2.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci/test-msys2.sh b/.gitlab-ci/test-msys2.sh
index 8fc42146..8cd39afd 100755
--- a/.gitlab-ci/test-msys2.sh
+++ b/.gitlab-ci/test-msys2.sh
@@ -32,6 +32,9 @@ COV_KEY="${CI_JOB_NAME}"
mkdir -p "${COV_DIR}"
export COVERAGE_FILE="${COV_DIR}/.coverage.${COV_KEY}"
+# FIXME: g_callable_info_free_closure etc
+CFLAGS+=" -Wno-error=deprecated-declarations"
+
# https://docs.python.org/3/using/cmdline.html#envvar-PYTHONDEVMODE
export PYTHONDEVMODE=1