Skip to content

Commit

Permalink
Merge pull request #172 from jethrolow/master
Browse files Browse the repository at this point in the history
Update latest SSAI artifacts, manual interoperability results, and include SSAI as automated verifier
  • Loading branch information
ounsworth authored Dec 11, 2024
2 parents d94607c + 421ba1c commit c9350d0
Show file tree
Hide file tree
Showing 23 changed files with 2,387 additions and 1,429 deletions.
20 changes: 19 additions & 1 deletion .github/workflows/artifact_validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,23 @@ jobs:
with:
name: Compatibility_bc_csv
path: ./output/
ssai_validation:
runs-on: ubuntu-latest
container: jethrolow/quantcrypt_validator
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Test artifacts with SSAI
run: ./src/test_certs_r4.sh ssai
- name: Save artifacts
uses: actions/upload-artifact@v4
with:
name: Compatibility_ssai_csv
path: ./output/
build_results_html:
runs-on: ubuntu-latest
container: ubuntu:latest
needs: [oqs_validation, bc_validation]
needs: [oqs_validation, bc_validation, ssai_validation]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -64,6 +77,11 @@ jobs:
with:
name: Compatibility_bc_csv
path: output/
- name: Get SSAI results from previous job
uses: actions/download-artifact@v4
with:
name: Compatibility_ssai_csv
path: output/
- name: Build compat matrix (r4)
run: ./src/rebuild_results_certs_r4.sh
- name: Copy output files
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ providers/bc/java-artifacts
providers/botan/default/artifacts

docs/oids.json
output/
Loading

0 comments on commit c9350d0

Please sign in to comment.