gitlab CI: drop the ninja dist for every job

Unlike autotools distcheck which ensures we didn't forget to add
anything to the makefiles, ninja dist just zips up the git repo.

It does run the tests though but without suite selection which is a
problem for us here.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2023-01-05 09:46:09 +10:00
parent 6be54f75c8
commit 37f71a8493
2 changed files with 2 additions and 6 deletions

View file

@ -64,7 +64,7 @@ variables:
extends: extends:
- .default_artifacts - .default_artifacts
script: script:
- .gitlab-ci/meson-build.sh - .gitlab-ci/meson-build.sh --run-test
.fedora:34: .fedora:34:
extends: .fdo.distribution-image@fedora extends: .fdo.distribution-image@fedora
@ -496,8 +496,6 @@ alpine:latest@container-clean:
- .meson_build - .meson_build
stage: build stage: build
dependencies: [] dependencies: []
variables:
NINJA_ARGS: "dist"
fedora:34@autotools-build: fedora:34@autotools-build:

View file

@ -60,7 +60,7 @@ variables:
extends: extends:
- .default_artifacts - .default_artifacts
script: script:
- .gitlab-ci/meson-build.sh - .gitlab-ci/meson-build.sh --run-test
{# Generate templates for every distribution/version combination we want, any {# Generate templates for every distribution/version combination we want, any
job can then just extends: .name:version and the images will sort job can then just extends: .name:version and the images will sort
@ -265,8 +265,6 @@ check-merge-request:
- .meson_build - .meson_build
stage: build stage: build
dependencies: [] dependencies: []
variables:
NINJA_ARGS: "dist"
{% for distro in distributions %} {% for distro in distributions %}
{% for version in distro.versions %} {% for version in distro.versions %}