diff options
author | Alan Rominger <arominge@redhat.com> | 2023-09-14 21:45:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-14 21:45:07 +0200 |
commit | aa3228eec9093f3dd88f6a9240dd3f89158a9713 (patch) | |
tree | 92f99c02f10aaecd9ea485b12b3bdb1b33a2c16a /.github/workflows | |
parent | Continue workflow steps to save logs from failed tests (#14448) (diff) | |
download | awx-aa3228eec9093f3dd88f6a9240dd3f89158a9713.tar.xz awx-aa3228eec9093f3dd88f6a9240dd3f89158a9713.zip |
Fix continue-on-error GH actions bug, always run archive step instead
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 3 | ||||
-rw-r--r-- | .github/workflows/e2e_test.yml | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78c3aa734d..9cf04a325f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -121,7 +121,6 @@ jobs: collection-integration: name: awx_collection integration runs-on: ubuntu-latest - continue-on-error: true strategy: fail-fast: false matrix: @@ -160,11 +159,13 @@ jobs: # Upload coverage report as artifact - uses: actions/upload-artifact@v3 + if: always() with: name: coverage-${{ matrix.target-regex.name }} path: ~/.ansible/collections/ansible_collections/awx/awx/tests/output/coverage/ - uses: ./.github/actions/upload_awx_devel_logs + if: always() with: log-filename: collection-integration-${{ matrix.target-regex.name }}.log diff --git a/.github/workflows/e2e_test.yml b/.github/workflows/e2e_test.yml index 8a03db9acb..899afecd79 100644 --- a/.github/workflows/e2e_test.yml +++ b/.github/workflows/e2e_test.yml @@ -71,5 +71,6 @@ jobs: awx-pf-tests run --project . - uses: ./.github/actions/upload_awx_devel_logs + if: always() with: log-filename: e2e-${{ matrix.job }}.log |