Skip to content

Commit

Permalink
review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Golaszewski committed Nov 8, 2024
1 parent ec6abdd commit 0e69f35
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/k8s-snap-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ concurrency:
jobs:
build:
env:
# TEST_CNCF_E2E: ${{ contains(github.event.pull_request.labels.*.name, 'cncf-conformance') || github.ref_name == 'master' }}
TEST_CNCF_E2E: ${{ contains(github.event.pull_request.labels.*.name, 'documentation') || github.ref_name == 'master' }}
TEST_CNCF_E2E: ${{ contains(github.event.pull_request.labels.*.name, 'cncf-conformance') || github.ref_name == 'master' }}
name: K8s-snap Integration Test
runs-on: ubuntu-20.04

Expand Down Expand Up @@ -76,13 +75,13 @@ jobs:
name: inspection-reports
path: ${{ github.workspace }}/inspection-reports.tar.gz
- name: Extract CNCF conformance report
if: ${{ failure() && (env.TEST_CNCF_E2E == 'true') }}
if: ${{ failure() && ( env.TEST_CNCF_E2E == 'true' ) }}
working-directory: k8s-snap/tests/integration
run: |
tar -xf sonobuoy_e2e.tar.gz --one-top-level
- name: Upload CNCF conformance report artifact
uses: actions/upload-artifact@v4
if: ${{ failure() && (env.TEST_CNCF_E2E == 'true') }}
if: ${{ failure() && ( env.TEST_CNCF_E2E == 'true' ) }}
with:
name: report_sonobuoy_e2e
path: k8s-snap/tests/integration/sonobuoy_e2e
Expand Down

0 comments on commit 0e69f35

Please sign in to comment.