Skip to content

Commit

Permalink
split prod/staging conformance test jobs (#1157)
Browse files Browse the repository at this point in the history
Signed-off-by: Brian DeHamer <bdehamer@github.com>
  • Loading branch information
bdehamer committed May 16, 2024
1 parent f16dd99 commit 8477195
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ permissions:
contents: read

jobs:
conformance:
conformance-production:
name: Conformance Test (Production)
runs-on: ubuntu-latest
steps:
- name: Checkout source
Expand All @@ -29,6 +30,22 @@ jobs:
with:
entrypoint: ${{ github.workspace }}/packages/conformance/bin/run
xfail: "test_verify_with_trust_root"

conformance-staging:
name: Conformance Test (Staging)
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Setup node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build sigstore-js
run: npm run build
- uses: sigstore/sigstore-conformance@ee4de0e602873beed74cf9e49d5332529fe69bf6 # v0.0.11
with:
entrypoint: ${{ github.workspace }}/packages/conformance/bin/run
Expand Down

0 comments on commit 8477195

Please sign in to comment.