archive artifacts
This commit is contained in:
@@ -41,8 +41,29 @@ jobs:
|
|||||||
- name: Test
|
- name: Test
|
||||||
working-directory: ${{github.workspace}}/build
|
working-directory: ${{github.workspace}}/build
|
||||||
run: ctest -C ${{env.BUILD_TYPE}}
|
run: ctest -C ${{env.BUILD_TYPE}}
|
||||||
|
- name: Archive artifacts Windows
|
||||||
|
if: matrix.os == 'windows_x64'
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: 'Artifacts'
|
||||||
|
path: |
|
||||||
|
${{github.workspace}}/build/examples/${{env.BUILD_TYPE}}
|
||||||
|
${{github.workspace}}/build/tests/${{env.BUILD_TYPE}}
|
||||||
|
if-no-files-found: error
|
||||||
|
retention-days: 30
|
||||||
|
- name: Archive artifacts
|
||||||
|
if: matrix.os != 'windows_x64'
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: 'Artifacts'
|
||||||
|
path: |
|
||||||
|
${{github.workspace}}/build/examples
|
||||||
|
${{github.workspace}}/build/tests
|
||||||
|
if-no-files-found: error
|
||||||
|
retention-days: 30
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#TODO archive executables
|
|
||||||
|
|
||||||
|
|
||||||
build_iOS:
|
build_iOS:
|
||||||
|
|||||||
Reference in New Issue
Block a user