parent
e6d31115ee
commit
2123110d7f
10
.github/workflows/integration-tests-command.yml
vendored
10
.github/workflows/integration-tests-command.yml
vendored
|
|
@ -837,9 +837,9 @@ jobs:
|
||||||
if: needs.fat-container-test.result != 'success'
|
if: needs.fat-container-test.result != 'success'
|
||||||
run: cat ~/failed_spec_fat/failed_spec_fat* >> ~/combined_failed_spec_fat
|
run: cat ~/failed_spec_fat/failed_spec_fat* >> ~/combined_failed_spec_fat
|
||||||
|
|
||||||
# Force save the failed spec list into a cache
|
# save the failed spec list into a cache
|
||||||
- name: Store the combined run result
|
- name: Store the combined run result
|
||||||
if: needs.ui-test.result
|
if: needs.ui-test.result != 'success'
|
||||||
uses: martijnhols/actions-cache/save@v3
|
uses: martijnhols/actions-cache/save@v3
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -850,7 +850,7 @@ jobs:
|
||||||
|
|
||||||
# Force save the fat failed spec list into a cache
|
# Force save the fat failed spec list into a cache
|
||||||
- name: Store the combined run result for fat
|
- name: Store the combined run result for fat
|
||||||
if: needs.ui-test.result
|
if: needs.fat-container-test.result != 'success'
|
||||||
uses: martijnhols/actions-cache/save@v3
|
uses: martijnhols/actions-cache/save@v3
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
|
|
@ -862,7 +862,7 @@ jobs:
|
||||||
# Upload combined failed spec list to a file
|
# Upload combined failed spec list to a file
|
||||||
# This is done for debugging.
|
# This is done for debugging.
|
||||||
- name: upload combined failed spec
|
- name: upload combined failed spec
|
||||||
if: needs.ui-test.result
|
if: needs.ui-test.result != 'success'
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: combined_failed_spec
|
name: combined_failed_spec
|
||||||
|
|
@ -871,7 +871,7 @@ jobs:
|
||||||
# Upload combined failed fat spec list to a file
|
# Upload combined failed fat spec list to a file
|
||||||
# This is done for debugging.
|
# This is done for debugging.
|
||||||
- name: upload combined failed spec
|
- name: upload combined failed spec
|
||||||
if: needs.ui-test.result
|
if: needs.fat-container-test.result != 'success'
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: combined_failed_spec_fat
|
name: combined_failed_spec_fat
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user