Merge branch 'ci-distcheck' into 'gtk-3-24'

(3.24) gitlab-ci: Run distcheck, but without actually running the tests

See merge request GNOME/gtk!999
This commit is contained in:
Christoph Reiter
2019-11-16 08:24:47 +00:00
2 changed files with 13 additions and 0 deletions

View File

@@ -12,6 +12,14 @@ fedora-autotools:
script:
- bash -x ./.gitlab-ci/test-docker-autotools.sh
fedora-distcheck:
variables:
DO_DISTCHECK: "yes"
when: manual
stage: build
script:
- bash -x ./.gitlab-ci/test-docker-autotools.sh
fedora-meson:
stage: build
script:

View File

@@ -16,3 +16,8 @@ cd _build
--enable-xinerama \
--enable-gtk-doc
make -j8
if [ -n "${DO_DISTCHECK-}" ]; then
make -j8 check SKIP_GDKTARGET="echo Not actually running tests for now"
make -j8 distcheck SKIP_GDKTARGET="echo Not actually running tests for now"
fi