-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8fe06f7
commit ba761fd
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
#!/bin/bash | ||
|
||
# build a list of all compat matrix files in provider dirs | ||
dirs=$(ls ../providers) | ||
dirs=$(ls providers) | ||
for dir in $dirs; do | ||
dir=../providers/$dir | ||
dir=providers/$dir | ||
if [ ! -d $dir ]; then continue; fi | ||
files+=$(find $dir/compatMatrices/artifacts_cms_v1 -name "*.csv" ) | ||
files+=" " | ||
done | ||
|
||
# build the compat matrix | ||
python3 pqc_report_writer_common.py ../docs/oid_mapping.md pqc_hackathon_results_cms_v1.md CMS $files | ||
python3 src/pqc_report_writer_common.py docs/oid_mapping.md pqc_hackathon_results_cms_v1.md CMS $files | ||
|
||
# convert to html | ||
pandoc -f markdown pqc_hackathon_results_cms_v1.md > pqc_hackathon_results_cms_v1.html | ||
mv pqc_hackathon_results_cms_v1.md pqc_hackathon_results_cms_v1.html oids.json ../docs | ||
mv pqc_hackathon_results_cms_v1.md pqc_hackathon_results_cms_v1.html docs |