summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2020-11-15 17:01:10 +0100
committerNiels De Graef <nielsdegraef@gmail.com>2020-11-15 17:01:10 +0100
commit0cb296c9f822273deb02bef2b4e318bada9736b8 (patch)
treeae9b789c8b887a964b55fb9d188eeb338e2a50c5
parentd05f86ef6dcbb02ee951ce0b2e6ab184de6d81be (diff)
downloadgcr-wip/nielsdg/initial-gtask.tar.gz
ci: Add artifacts to all jobswip/nielsdg/initial-gtask
That way, if we have an issue during one of these jobs, we can check for example the meson logs to see what went wrong.
-rw-r--r--.gitlab-ci.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3d56cad..db8f059 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -42,6 +42,12 @@ fedora:asan:
- meson _build -Dsanitize=address
- eval `dbus-launch --sh-syntax`
- meson test -C _build
+ artifacts:
+ name: "gcr-asan-${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
+ when: always
+ paths:
+ - "_build/config.h"
+ - "_build/meson-logs"
fedora:ubsan:
image: fedora:latest
@@ -55,6 +61,12 @@ fedora:ubsan:
- meson _build -Dsanitize=undefined
- eval `dbus-launch --sh-syntax`
- meson test -C _build
+ artifacts:
+ name: "gcr-ubsan-${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
+ when: always
+ paths:
+ - "_build/config.h"
+ - "_build/meson-logs"
fedora:coverage:
image: fedora:latest
@@ -74,6 +86,12 @@ fedora:coverage:
name: "gcr-${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
paths:
- _build/meson-logs/coveragereport/
+ artifacts:
+ name: "gcr-coverage-${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
+ when: always
+ paths:
+ - "_build/config.h"
+ - "_build/meson-logs"
pages:
stage: deploy