aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-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