Skip to content

Commit

Permalink
Cut down on runners with just an extra step
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyLandman committed Jun 10, 2020
1 parent 915c76d commit 0cbc63d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,17 @@ jobs:
strategy:
matrix:
poly: [8, 16, 32, 64]
path: ["", "-DTEST_SLOW_PATH"]
opt: ["-Os", "", "-O1", "-O2", "-O3"]

steps:
- uses: actions/checkout@v2

- name: test
- name: test normal
env:
CFLAGS: "-fsanitize=address ${{matrix.opt}} ${{ matrix.path }} -DPOLY1305_${{matrix.poly}}BIT"
run: make clean test



- name: test slow
env:
CFLAGS: "-fsanitize=address ${{matrix.opt}} ${{ matrix.path }} -DPOLY1305_${{matrix.poly}}BIT"
run: make clean test -DTEST_SLOW_PATH

0 comments on commit 0cbc63d

Please sign in to comment.