From 449d808b4277f690a4cd03388082f49b8698d0be Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 7 Mar 2023 11:57:46 +1000 Subject: [PATCH] CI: always run the tests Embarassingly, only the valgrind test would actually run tests because it was the only one with a non-null MESON_TEST_ARGS. Let's fix this by explicitly telling the build script to run the tests. --- .gitlab-ci.yml | 2 +- .gitlab-ci/ci.template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f0594a7..be80e3e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -180,7 +180,7 @@ fedora:37@container-prep: - .policy stage: build script: - - .gitlab-ci/meson-build.sh + - .gitlab-ci/meson-build.sh --run-test artifacts: name: "meson-logs-$CI_JOB_NAME" when: always diff --git a/.gitlab-ci/ci.template b/.gitlab-ci/ci.template index faca384..8862c50 100644 --- a/.gitlab-ci/ci.template +++ b/.gitlab-ci/ci.template @@ -197,7 +197,7 @@ python-ruff: - .policy stage: build script: - - .gitlab-ci/meson-build.sh + - .gitlab-ci/meson-build.sh --run-test artifacts: name: "meson-logs-$CI_JOB_NAME" when: always