-
Notifications
You must be signed in to change notification settings - Fork 1
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
155ccb1
commit eb940ba
Showing
3 changed files
with
69 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: ml-dsa tests | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: [ "master" ] | ||
jobs: | ||
build-all: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Install Toolchain | ||
uses: carlosperate/[email protected] | ||
with: | ||
release: 13.2.Rel1 | ||
- name: Install qemu-system | ||
run: sudo apt-get install -y qemu-system | ||
- name: Test (mps2-an386) | ||
run: ./test.py PLATFORM=mps2-an386 ml-dsa-44 ml-dsa-65 ml-dsa-87 | ||
- name: Testvectors (mps2-an386) | ||
run: ./testvectors.py PLATFORM=mps2-an386 ml-dsa-44 ml-dsa-65 ml-dsa-87 |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: ml-kem tests | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: [ "master" ] | ||
jobs: | ||
build-all: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Install Toolchain | ||
uses: carlosperate/[email protected] | ||
with: | ||
release: 13.2.Rel1 | ||
- name: Test (mps2-an386) | ||
run: ./test.py PLATFORM=mps2-an386 ml-kem-512 ml-kem-768 ml-kem-1024 | ||
- name: Testvectors (mps2-an386) | ||
run: ./testvectors.py PLATFORM=mps2-an386 ml-kem-512 ml-kem-768 ml-kem-1024 |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: mps2-an386 build | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: [ "master" ] | ||
jobs: | ||
build-all: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Install Toolchain | ||
uses: carlosperate/[email protected] | ||
with: | ||
release: 13.2.Rel1 | ||
- name: Build All (mps2-an386) | ||
run: make PLATFORM=mps2-an386 -j2 |