summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaiki Ueno <dueno@src.gnome.org>2020-03-10 13:53:44 +0100
committerDaiki Ueno <dueno@src.gnome.org>2020-03-10 13:53:44 +0100
commit225554076a3081059ec5f8c8492aee1fbdf81b5a (patch)
tree6b9bf974a1da508736e1511fb5b253a64e429be8
parente4428dd29fb41672a2dff330a600ed7af2dc74de (diff)
downloadlibsecret-225554076a3081059ec5f8c8492aee1fbdf81b5a.tar.gz
.gitlab-ci.yml: include meson-logs in artifacts
-rw-r--r--.gitlab-ci.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f8f20d0..e7f3ec9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -18,6 +18,10 @@ fedora:Werror:
- meson _build -Dwerror=true -Dc_args=-Wno-error=deprecated-declarations
- eval `dbus-launch --sh-syntax`
- meson test -C _build
+ artifacts:
+ when: on_failure
+ paths:
+ - _build/meson-logs/testlog.txt
fedora:asan:
image: fedora:latest
@@ -32,6 +36,10 @@ fedora:asan:
- meson _build -Dsanitize=address
- eval `dbus-launch --sh-syntax`
- meson test -C _build
+ artifacts:
+ when: on_failure
+ paths:
+ - _build/meson-logs/testlog.txt
fedora:ubsan:
image: fedora:latest
@@ -46,6 +54,10 @@ fedora:ubsan:
- meson _build -Dsanitize=undefined
- eval `dbus-launch --sh-syntax`
- meson test -C _build
+ artifacts:
+ when: on_failure
+ paths:
+ - _build/meson-logs/testlog.txt
fedora:coverage:
image: fedora:latest
@@ -64,6 +76,7 @@ fedora:coverage:
coverage: '/^\s+lines.+:\s+([\d.]+\%)\s+/'
artifacts:
name: "libsecret-${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
+ when: on_success
paths:
- _build/meson-logs/coveragereport/
# https://github.com/linux-test-project/lcov/issues/58