diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-10 03:34:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-10 03:34:16 +0300 |
commit | 91960993dcb07c3362dbce3f2c28f279152c7627 (patch) | |
tree | a872c17fddfb64399b3b899ec69be5a1ca83a3b5 /.gitlab-ci.yml | |
parent | e1f84d1defba61d8eb525e19600e4ef2c8338abb (diff) | |
download | plus-91960993dcb07c3362dbce3f2c28f279152c7627.tar.gz plus-91960993dcb07c3362dbce3f2c28f279152c7627.tar.bz2 plus-91960993dcb07c3362dbce3f2c28f279152c7627.tar.xz plus-91960993dcb07c3362dbce3f2c28f279152c7627.zip |
In coverage builds add all untracked files into artifacts.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f5d090b04..a8632cdfd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -588,7 +588,13 @@ gcc-6_tests_gcov: stage: build script: - ./tools/ci/jobs/gcc6_tests_gcov.sh --without-dyecmd --without-manaplusgame - <<: *job-shared + artifacts: + untracked: true + paths: + - logs + when: always + expire_in: 3 week + dependencies: [] variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext @@ -736,7 +742,12 @@ gcc-6_sdl2_tests_gcov: stage: build script: - ./tools/ci/jobs/gcc6_sdl2_tests_gcov.sh --without-dyecmd --without-manaplusgame - <<: *job-shared + artifacts: + untracked: true + paths: + - logs + when: always + expire_in: 3 week variables: PACKAGES: gcc-6 g++-6 make autoconf automake autopoint gettext |