diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2021-03-01 20:51:07 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2021-03-01 20:51:07 (GMT) |
commit | 18d6737e96de3440dffad45a031b5304fe22324b (patch) | |
tree | 1f1ee52a98c049c8a015e618aa6589c1ef1f28f7 /.gitlab | |
parent | c829b6179c318c775691974733f2ecbcafa0e502 (diff) | |
download | CMake-18d6737e96de3440dffad45a031b5304fe22324b.zip CMake-18d6737e96de3440dffad45a031b5304fe22324b.tar.gz CMake-18d6737e96de3440dffad45a031b5304fe22324b.tar.bz2 |
gitlab-ci: always upload test and release artifacts
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/artifacts.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab/artifacts.yml b/.gitlab/artifacts.yml index bd13646..bf8e8b6 100644 --- a/.gitlab/artifacts.yml +++ b/.gitlab/artifacts.yml @@ -71,6 +71,8 @@ .cmake_release_artifacts: artifacts: expire_in: 5d + # Release artifacts are of interest even for failed jobs. + when: always paths: # Any packages made. - build/cmake-*-linux-x86_64.* @@ -83,6 +85,8 @@ .cmake_test_artifacts: artifacts: expire_in: 1d + # External testing can be useful even if test jobs fail. + when: always paths: # Take the install tree. - build/install/ |