Update EXPERIMENTAL_artifact_validation_acvp.yaml #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: EXPERIMENTAL ACVP Artifact validation | |
on: | |
push: | |
branches: [ 'acvp-auto-testing' ] | |
jobs: | |
acvp_validation: | |
runs-on: ubuntu-latest | |
# Is this the right dotnet image? | |
container: mcr.microsoft.com/dotnet/runtime | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
path: pqc-certificates | |
- name: Checkout ACVP code | |
uses: actions/checkout@v4 | |
with: | |
# I would rather clone the official repo usnistgov/ACVP-Server | |
# and then have any supporting code here in this repo. | |
repository: josephlukefahr/ACVP-Server | |
path: ACVP-Server | |
- name: DEBUG test pqc-certificates clone | |
run: ls ./pqc-certificates | |
- name: DEBUG test ACVP-Server clone | |
run: ls ./ACVP-Server | |
- run: /bin/sh ./pqc-certificates/src/test_certs_r3_with_acvp.sh | |
- name: Save artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Compatibility_acvp_csv | |
path: /output/ |