diff options
author | Brad King <brad.king@kitware.com> | 2022-05-19 16:58:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-05-19 19:25:55 (GMT) |
commit | 729ee30c2eb627808f64199e3337fe7b0fcf8a74 (patch) | |
tree | deb42fdc231a594959df6ff0e34af6cdc3003b03 /.gitlab/artifacts.yml | |
parent | 1eab922d9229c71fa903eda361e85205732025cf (diff) | |
download | CMake-729ee30c2eb627808f64199e3337fe7b0fcf8a74.zip CMake-729ee30c2eb627808f64199e3337fe7b0fcf8a74.tar.gz CMake-729ee30c2eb627808f64199e3337fe7b0fcf8a74.tar.bz2 |
gitlab-ci: Simplify collection of CTestTestfile artifacts
gitlab-runner 13.0 and above support `**` to match arbitrary
directory paths.
Diffstat (limited to '.gitlab/artifacts.yml')
-rw-r--r-- | .gitlab/artifacts.yml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.gitlab/artifacts.yml b/.gitlab/artifacts.yml index 5472c0a..c3f4418 100644 --- a/.gitlab/artifacts.yml +++ b/.gitlab/artifacts.yml @@ -4,13 +4,8 @@ artifacts: expire_in: 1d paths: - # XXX(globbing): Can be simplified with support from - # https://gitlab.com/gitlab-org/gitlab-runner/issues/4840 - - build/CTestTestfile.cmake - - build/*/CTestTestfile.cmake - - build/*/*/CTestTestfile.cmake - - build/*/*/*/CTestTestfile.cmake - - build/*/*/*/*/CTestTestfile.cmake + # Test specifications. + - build/**/CTestTestfile.cmake # Allow CMake to find CMAKE_ROOT. - build/CMakeFiles/CMakeSourceDir.txt |