Skip to content

Commit

Permalink
Update c.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklonga authored Jun 8, 2021
1 parent 2b804aa commit 3aaa1a0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,20 @@ jobs:
strategy:
matrix:
opt_level: ['GENERIC', 'FAST']
targetPlatform: [x86, x64]
steps:
- uses: actions/checkout@v2
- name: Build
env:
OPT_LEVEL: ${{ matrix.opt_level }}
TargetPlatform: ${{ matrix.targetplatform }}
run: make
- name: SIKEp434
run: make test434
- name: SIKEp434 x64
if: ${{ matrix.targetplatform == 'x64' }}
run: make test434 ARCH=x64
- name: SIKEp434 x86
if: ${{ matrix.targetplatform == 'x86' }}
run: make test434 ARCH=x86
- name: SIKEp503
run: make test503
- name: SIKEp610
Expand Down

0 comments on commit 3aaa1a0

Please sign in to comment.