From 26f622122f31cdb0d1729e054931a642dc12ef0d Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Mon, 13 Jan 2025 16:50:45 -0800 Subject: [PATCH] fix nostreamtest --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d806dff8..0acc5f27 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -149,17 +149,17 @@ jobs: run: | CFLAGS="-Os -DXXH_SIZE_OPT=2 -Wall -Wextra -Werror" make clean xxhsum - - name: noxxh3test + - name: XXH_NO_XXH3 if: always() run: | # check library can be compiled with XXH_NO_XXH3, resulting in no XXH3_* symbol make clean noxxh3test - - name: nostreamtest + - name: XXH_NO_STREAM if: always() run: | # check library can be compiled with XXH_NO_STREAM, resulting in no streaming symbols - make clean noxxh3test + make clean nostreamtest - name: make avx512f run: |