]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Create temporary files in CTest's Testing/Temporary directory and upload all files...
authorNathan Moinvaziri <nathan@nathanm.com>
Fri, 30 Apr 2021 01:02:34 +0000 (18:02 -0700)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Mon, 3 May 2021 08:48:24 +0000 (10:48 +0200)
.github/workflows/cmake.yml
cmake/test-compress.cmake

index 8178e2a189500709acac3c607d099812c4a231ba..6ab72297cac4eb041ab1333a3f100bc2214e607d 100644 (file)
@@ -441,9 +441,5 @@ jobs:
         path: |
           ${{ matrix.build-dir || '.' }}/CMakeFiles/CMakeOutput.log
           ${{ matrix.build-dir || '.' }}/CMakeFiles/CMakeError.log
-          ${{ matrix.build-dir || '.' }}/Testing/Temporary/*.log
-          ${{ matrix.build-dir || '.' }}/test/**/*.diff
-          ${{ matrix.build-dir || '.' }}/test/**/*.hex
-          ${{ matrix.build-dir || '.' }}/test/**/*.gz*
-          ${{ matrix.build-dir || '.' }}/test/**/*.out
+          ${{ matrix.build-dir || '.' }}/Testing/Temporary/*
         retention-days: 30
index 97c387da2d348bcecdfb110fb7b9525bdabf1b78..1ec1b27ed3e7c2c8cb6f743c6b42bc17085f41b4 100644 (file)
@@ -58,7 +58,7 @@ endif()
 # Generate unique output path so multiple tests can be executed at the same time
 string(RANDOM LENGTH 6 UNIQUE_ID)
 string(REPLACE "." "-" TEST_NAME "${TEST_NAME}")
-set(OUTPUT_BASE "${CMAKE_CURRENT_BINARY_DIR}/test/${TEST_NAME}-${UNIQUE_ID}")
+set(OUTPUT_BASE "${CMAKE_CURRENT_BINARY_DIR}/Testing/Temporary/${TEST_NAME}-${UNIQUE_ID}")
 
 # Ensure directory exists for output files
 get_filename_component(OUTPUT_DIR "${OUTPUT_BASE}" DIRECTORY)