Skip to content

Removing OQS as an automated verifier #210

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 2 additions & 20 deletions .github/workflows/artifact_validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,6 @@ concurrency:
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_r5.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
Expand Down Expand Up @@ -54,7 +41,7 @@ jobs:
build_results_html:
runs-on: ubuntu-latest
container: ubuntu:latest
needs: [oqs_validation, bc_validation, ssai_validation]
needs: [bc_validation, ssai_validation]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -68,11 +55,6 @@ jobs:
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:
Expand All @@ -88,7 +70,7 @@ jobs:
- name: Build compat matrix (cms_v3)
run: ./src/rebuild_results_cms_v3.sh
- name: Copy output files (automated r5/v1)
run: cp ./docs/pqc_hackathon_results_certs_r5_automated_tests.html ./output/certs/oqs_certs.log ./output/certs/bc_certs.log ./output/certs/ssai_certs.log ./docs/gh-pages
run: cp ./docs/pqc_hackathon_results_certs_r5_automated_tests.html ./output/certs/bc_certs.log ./output/certs/ssai_certs.log ./docs/gh-pages
- name: Copy output files (manual r5/v1)
run: cp ./docs/pqc_hackathon_results_certs_r5.html ./docs/pqc_hackathon_results_cms_v1.html ./docs/gh-pages
- name: Copy output files (manual r5/v3)
Expand Down
1 change: 0 additions & 1 deletion docs/gh-pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<br>
<p>Logs from the most recent run can be found here:</p>
<p>(check the logs to see why your certs failed)</p>
<p><a href="oqs_certs.log">oqs_certs.log</a></p>
<p><a href="bc_certs.log">bc_certs.log</a></p>
<p><a href="ssai_certs.log">ssai_certs.log</a></p>
</body>
Expand Down
Loading