Conform to NIST FIPS 204 #78
Workflow file for this run
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: Test NIST FIPS 204 ML-DSA | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
compiler: [g++, clang++] | |
build_type: [debug, release] | |
test_type: [standard, asan, ubsan] | |
max-parallel: 4 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Google Test | |
uses: Bacondish2023/setup-googletest@v1 | |
with: | |
tag: v1.15.2 | |
- name: Build and Test (${{ matrix.compiler }}, ${{ matrix.build_type }}, ${{ matrix.test_type }}) | |
run: | | |
CXX=${{ matrix.compiler }} | |
if [[ ${{ matrix.test_type }} == "standard" ]]; then | |
make test -j 2>&1 | tee build.log | |
else | |
make ${{ matrix.build_type }}_${{ matrix.test_type }}_test -j 2>&1 | tee build.log | |
fi | |
if [ $? -ne 0 ]; then | |
echo "Build or Test Failed! See build.log for details." | |
exit 1 | |
fi | |
- name: Upload Build Log | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build-log-${{ matrix.compiler }}-${{ matrix.build_type }}-${{ matrix.test_type }} | |
path: build.log | |
- name: Run Examples | |
if: ${{ matrix.test_type == 'standard' && matrix.build_type == 'release' }} | |
run: | | |
CXX=${{ matrix.compiler }} make example -j 2>&1 | tee example.log | |
if [ $? -ne 0 ]; then | |
echo "Example execution Failed! See example.log for details." | |
exit 1 | |
fi | |
- name: Upload Example Log (if failed) | |
if: ${{ steps.Run_Examples.outcome != 'success' && matrix.test_type == 'standard' && matrix.build_type == 'release' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: example-log-${{ matrix.compiler }} | |
path: example.log |