move download artifacts to a separate step
This commit is contained in:
5
.github/workflows/quick-regression.yml
vendored
5
.github/workflows/quick-regression.yml
vendored
@ -71,7 +71,6 @@ jobs:
|
|||||||
ccache -s
|
ccache -s
|
||||||
|
|
||||||
- name: Run Selected Regression Tests
|
- name: Run Selected Regression Tests
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
source linuxenv/bin/activate
|
source linuxenv/bin/activate
|
||||||
@ -81,7 +80,11 @@ jobs:
|
|||||||
--config-file=tools/regression-tests/config.yaml \
|
--config-file=tools/regression-tests/config.yaml \
|
||||||
--list-input=folder_list.txt
|
--list-input=folder_list.txt
|
||||||
tar -cvf quick-regression-test.tar run.log progress.yaml
|
tar -cvf quick-regression-test.tar run.log progress.yaml
|
||||||
|
|
||||||
|
- name: Download artifacts
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: quick-regression-test-artifact
|
name: quick-regression-test-artifact
|
||||||
path: quick-regression-test.tar
|
path: quick-regression-test.tar
|
||||||
|
retention-days: 5
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user