aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2020-02-12 13:10:24 -0500
committerJack O'Connor <[email protected]>2020-02-12 13:12:05 -0500
commit1c4d7fdd8d45a397976963874269f22dcdde2a59 (patch)
tree75d12d60898d1f6fec45bb0f196db8c587d2328c /.github/workflows/ci.yml
parent7ee05ba3bd029535ec4289ab187dbf1e7bda6274 (diff)
add test_asm to the C Makefileasm_integration2
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 599da51..8d1fbaf 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -100,6 +100,7 @@ jobs:
steps:
- uses: actions/checkout@v1
+ # Test the intrinsics-based implementations.
- run: make test
working-directory: ./c
- run: make clean && rm blake3_sse41.c
@@ -114,3 +115,18 @@ jobs:
working-directory: ./c
- run: BLAKE3_NO_SSE41=1 BLAKE3_NO_AVX2=1 BLAKE3_NO_AVX512=1 make test
working-directory: ./c
+ # Test the assembly implementations.
+ - run: make test_asm
+ working-directory: ./c
+ - run: make clean && rm blake3-sse41-x86_64-unix.S
+ working-directory: ./c
+ - run: BLAKE3_NO_SSE41=1 make test_asm
+ working-directory: ./c
+ - run: make clean && rm blake3-avx2-x86_64-unix.S
+ working-directory: ./c
+ - run: BLAKE3_NO_SSE41=1 BLAKE3_NO_AVX2=1 make test_asm
+ working-directory: ./c
+ - run: make clean && rm blake3-avx512-x86_64-unix.S
+ working-directory: ./c
+ - run: BLAKE3_NO_SSE41=1 BLAKE3_NO_AVX2=1 BLAKE3_NO_AVX512=1 make test_asm
+ working-directory: ./c