Add r4 compatibility matrices for corey-digicert (#164) #293
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: Artifact validation | |
on: | |
push: | |
branches: [ '*' ] | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
oqs_validation: | |
runs-on: ubuntu-latest | |
container: openquantumsafe/oqs-ossl3 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Test artifacts with OQS | |
run: ./src/test_certs_r4.sh oqs | |
- name: Save artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Compatibility_oqs_csv | |
path: ./output/ | |
bc_validation: | |
runs-on: ubuntu-latest | |
container: bcdocker2000/bc_hackathon_pqc | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Test artifacts with BC | |
run: ./src/test_certs_r4.sh bc | |
- name: Save artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Compatibility_bc_csv | |
path: ./output/ | |
build_results_html: | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
needs: [oqs_validation, bc_validation] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install packages | |
run: | | |
apt-get update && \ | |
apt-get install -y pandoc lsb-release | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install python requirements | |
run: python -m pip install -r src/requirements.txt | |
- name: Get OQS results from previous job | |
uses: actions/download-artifact@v4 | |
with: | |
name: Compatibility_oqs_csv | |
path: output/ | |
- name: Get BC results from previous job | |
uses: actions/download-artifact@v4 | |
with: | |
name: Compatibility_bc_csv | |
path: output/ | |
- name: Build compat matrix (r4) | |
run: ./src/rebuild_results_certs_r4.sh | |
- name: Copy output files | |
run: mv ./docs/pqc_hackathon_results_certs_r4.html ./docs/pqc_hackathon_results_certs_r4_automated_tests.html ./docs/pqc_hackathon_results_cms_v1.html ./output/certs/oqs_certs.log ./output/certs/bc_certs.log ./docs/gh-pages | |
- name: Archive Compatibility Matrix For Download | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./docs/gh-pages | |
publish_to_gh_pages: | |
needs: build_results_html | |
if: github.ref == 'refs/heads/master' | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update git pages with new compatibiliy matrix | |
id: deployment | |
uses: actions/deploy-pages@v4 |