mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-11-14 01:20:43 -05:00
Fix/e2e fail on failure (#208)
This commit is contained in:
parent
82757ef2c0
commit
f7ba87135d
3 changed files with 9 additions and 0 deletions
7
.github/actions/sonobuoy/action.yml
vendored
7
.github/actions/sonobuoy/action.yml
vendored
|
|
@ -27,8 +27,15 @@ runs:
|
||||||
- name: Download results
|
- name: Download results
|
||||||
run: sonobuoy retrieve -x --kubeconfig constellation-admin.conf
|
run: sonobuoy retrieve -x --kubeconfig constellation-admin.conf
|
||||||
shell: bash
|
shell: bash
|
||||||
|
- name: Upload test results
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: 'junit_01.xml'
|
||||||
|
path: '**/junit_01.xml'
|
||||||
|
if: ${{ always() && !env.ACT }}
|
||||||
- name: Publish test results
|
- name: Publish test results
|
||||||
uses: mikepenz/action-junit-report@v3
|
uses: mikepenz/action-junit-report@v3
|
||||||
if: ${{ !env.ACT }}
|
if: ${{ !env.ACT }}
|
||||||
with:
|
with:
|
||||||
report_paths: '**/junit_01.xml'
|
report_paths: '**/junit_01.xml'
|
||||||
|
fail_on_failure: true
|
||||||
|
|
|
||||||
1
.github/workflows/e2e-test-azure.yml
vendored
1
.github/workflows/e2e-test-azure.yml
vendored
|
|
@ -1,6 +1,7 @@
|
||||||
name: e2e Test Azure
|
name: e2e Test Azure
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 3 * * *'
|
- cron: '0 3 * * *'
|
||||||
jobs:
|
jobs:
|
||||||
|
|
|
||||||
1
.github/workflows/e2e-test-gcp.yml
vendored
1
.github/workflows/e2e-test-gcp.yml
vendored
|
|
@ -1,6 +1,7 @@
|
||||||
name: e2e Test GCP
|
name: e2e Test GCP
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 4 * * *'
|
- cron: '0 4 * * *'
|
||||||
jobs:
|
jobs:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue