-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Anjan Roy <[email protected]>
- Loading branch information
1 parent
46e6730
commit 7541518
Showing
1 changed file
with
11 additions
and
6 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,4 +1,4 @@ | ||
name: Test Dilithium Post-Quantum Digital Signature Scheme using CI | ||
name: Test Dilithium Post-Quantum Digital Signature Scheme | ||
|
||
on: | ||
push: | ||
|
@@ -8,13 +8,18 @@ on: | |
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
runs-on: ${{matrix.os}} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Get CMake | ||
run: sudo apt-get install cmake | ||
# From https://github.com/marketplace/actions/actions-setup-cmake | ||
- name: Setup CMake | ||
uses: jwlawson/[email protected] | ||
with: | ||
cmake-version: 'latest' | ||
- name: Setup Google-Test | ||
run: | | ||
pushd ~ | ||
|
@@ -28,7 +33,7 @@ jobs: | |
popd | ||
popd | ||
popd | ||
- name: Execute Tests | ||
- name: Execute Tests on ${{matrix.os}} | ||
run: make -j | ||
- name: Cleanup | ||
run: make clean |