xxhash-ci: add benchmark into ci-scripts.

This commit is contained in:
Leonid Yuriev 2019-03-20 12:01:06 +03:00
parent 803545993a
commit 23dd39e757
2 changed files with 3 additions and 1 deletions

View File

@ -22,6 +22,7 @@ matrix:
- CPPFLAGS=-DXXH_VECTOR=1 make check # SSE2 code path
- make clean
- CPPFLAGS="-mavx2 -DXXH_VECTOR=2" make check # AVX2 code path
- make -C tests/bench
- name: ARM + aarch64 compilation and consistency checks
dist: xenial

View File

@ -40,7 +40,8 @@ build_script:
make -B clean test MOREFLAGS=-Werror
) ELSE (
make -B clean test CC=clang MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wconversion -Wno-sign-conversion"
)
) &&
make -C tests/bench
)
- if "%PLATFORM%"=="visual_x64" (
cd cmake_unofficial &&