summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-08-10 13:30:05 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-08-10 16:56:17 +0200
commit088b07e980a40f15899f1d4e89398726a7140642 (patch)
tree80359fb24414d6c17280e0159f820152feff2375
parentd47d159c58e4e92c2b4abc52ace05dc79b3e0f1f (diff)
downloadgnutls-088b07e980a40f15899f1d4e89398726a7140642.tar.gz
.gitlab-ci.yml: keep artifacts on build failure
-rw-r--r--.gitlab-ci.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9558c9c153..e10f911609 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,6 +7,12 @@ Build and Check - separate build dir:
- nettle2
except:
- tags
+ artifacts:
+ expire_in: 1 week
+ when: on_failure
+ paths:
+ - build/tests/*.log
+ - build/tests/*/*.log
Build and Check with valgrind:
script:
- git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c && ./configure
@@ -17,6 +23,12 @@ Build and Check with valgrind:
- nettle2
except:
- tags
+ artifacts:
+ expire_in: 1 week
+ when: on_failure
+ paths:
+ - tests/*.log
+ - tests/*/*.log
Build and Check with asan:
script:
- git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c &&CFLAGS="-fsanitize=address -g
@@ -28,3 +40,9 @@ Build and Check with asan:
- nettle2
except:
- tags
+ artifacts:
+ expire_in: 1 week
+ when: on_failure
+ paths:
+ - tests/*.log
+ - tests/*/*.log