Skip to content

Commit

Permalink
Isolate staging/production self tests from eachother (#143)
Browse files Browse the repository at this point in the history
should help determine quickly if failures are isolated to staging flakiness

Signed-off-by: Appu <[email protected]>
  • Loading branch information
loosebazooka authored May 8, 2024
1 parent c514bb1 commit 7a44d65
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:

jobs:
selftest:
strategy:
matrix:
sigstore-env: [production, staging]
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -27,11 +31,5 @@ jobs:
uses: ./
with:
entrypoint: ${{ github.workspace }}/sigstore-python-conformance
xfail: "test_verify_with_trust_root test_verify_dsse_bundle_with_trust_root test_verify_v_0_3"

- name: Staging conformance test sigstore-python
uses: ./
with:
entrypoint: ${{ github.workspace }}/sigstore-python-conformance
environment: staging
environment: ${{ matrix.sigstore-env }}
xfail: "test_verify_with_trust_root test_verify_dsse_bundle_with_trust_root test_verify_v_0_3"

0 comments on commit 7a44d65

Please sign in to comment.