Skip to content

Commit

Permalink
Adding BC automation
Browse files Browse the repository at this point in the history
  • Loading branch information
ounsworth authored Aug 29, 2024
1 parent 39d7cef commit 959e5fe
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/artifact_validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
build_results_html:
runs-on: ubuntu-latest
container: ubuntu:latest
needs: oqs_validation
needs: [oqs_validation, bc_validation]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -54,13 +54,16 @@ jobs:
python-version: '3.x'
- name: Install python requirements
run: python -m pip install -r src/requirements.txt
- name: Overwrite manually uploaded OQS results with automated results
- name: Get OQS results from previous job
uses: actions/download-artifact@v4
with:
name: Compatibility_oqs_csv
path: output/
# - name: Overwrite manually-uploaded OQS results CSVs
# run: cp ./output/certs/* ./providers/oqs-provider/compatMatrices/artifacts_certs_r3
- name: Get BC results from previous job
uses: actions/download-artifact@v4
with:
name: Compatibility_bc_csv
path: output/
- name: Build compat matrix
run: ./src/rebuild_results_certs_r3.sh
- name: Copy output files
Expand Down

0 comments on commit 959e5fe

Please sign in to comment.