summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorBenjamin Berg <bberg@redhat.com>2021-08-05 18:21:55 +0200
committerBenjamin Berg <bberg@redhat.com>2021-08-09 16:08:27 +0200
commit874513e79a51dfacab8f89639aba337a67e69424 (patch)
tree2f177e7230208924ec7e33343c0019cbe0036784 /.gitlab-ci.yml
parent5c89bda7f319bad8cb79b5715a534a9221f4c331 (diff)
ci: Always expose job artifacts for tests
Not having the artifacts means not having the log on failures. So always expose them (even if in some cases we might only need them on failure).
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index be0b46e..96fae75 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -69,6 +69,7 @@ test:
- cat _build/meson-logs/coverage.txt
artifacts:
expose_as: 'Coverage Report'
+ when: always
paths:
- _build/meson-logs
- _build/meson-logs/coveragereport/index.html
@@ -86,6 +87,7 @@ test_valgrind:
- meson test -C _build --print-errorlogs --no-stdsplit --setup=valgrind
artifacts:
expose_as: 'Valgrind test logs'
+ when: always
paths:
- _build/meson-logs
- _build/meson-logs/testlog-valgrind.txt