Recursively glob artifact files for gitlab runners

New versions of GitLab allow files for artifacts to be globbed
recursively. Use this to get build files like `*.cmake`.
This commit is contained in:
Kenneth Moreland 2022-05-18 21:15:15 -06:00
parent 2b102e2b7c
commit b6e490d604
2 changed files with 5 additions and 24 deletions

@ -228,12 +228,7 @@ stages:
# #
# Note: this also captures our CIState.cmake file # Note: this also captures our CIState.cmake file
- build/CMakeCache.txt - build/CMakeCache.txt
- build/*.cmake - build/**/*.cmake
- build/*/*.cmake
- build/*/*/*.cmake
- build/*/*/*/*.cmake
- build/*/*/*/*/*.cmake
- build/*/*/*/*/*/*.cmake
- build/Testing/ - build/Testing/
# CDash files. # CDash files.
@ -245,18 +240,9 @@ stages:
when: always when: always
paths: paths:
# The generated regression testing images # The generated regression testing images
- build/*.png - build/**/*.png
- build/*.pnm - build/**/*.pnm
- build/*.pmm - build/**/*.pmm
- build/*/*.png
- build/*/*.pnm
- build/*/*.pmm
- build/*/*/*.png
- build/*/*/*.pnm
- build/*/*/*.pmm
- build/*/*/*/*.png
- build/*/*/*/*.pnm
- build/*/*/*/*.pmm
reports: reports:
junit: junit:
- build/junit.xml - build/junit.xml

@ -52,12 +52,7 @@
# #
# Note: this also captures our CIState.cmake file # Note: this also captures our CIState.cmake file
- build/CMakeCache.txt - build/CMakeCache.txt
- build/*.cmake - build/**/*.cmake
- build/*/*.cmake
- build/*/*/*.cmake
- build/*/*/*/*.cmake
- build/*/*/*/*/*.cmake
- build/*/*/*/*/*/*.cmake
- build/Testing/ - build/Testing/
# CDash files. # CDash files.