From 3746693b71b135bb060f40483cd22b0cebdd4d3d Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Sat, 14 Dec 2019 13:29:24 -0800 Subject: [PATCH] added ppc64le tests on travis on real hardware --- .gitignore | 3 ++- .travis.yml | 10 +++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6ad56430..96f8bdce 100644 --- a/.gitignore +++ b/.gitignore @@ -44,5 +44,6 @@ _zstdbench/ googletest/ *.d *.vscode +*.code-workspace compile_commands.json -.clangd \ No newline at end of file +.clangd diff --git a/.travis.yml b/.travis.yml index 57242a48..a87c604a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -152,6 +152,7 @@ matrix: # tests for master branch and cron job only - name: OS-X # ~13mn + if: branch = master os: osx script: - make test @@ -168,12 +169,19 @@ matrix: - CC=clang-3.8 make tsan-test-zstream - CC=clang-3.8 make tsan-fuzztest - - name: PPC64 # ~13mn + - name: Qemu PPC64 + Fuzz test # ~13mn if: branch = master script: - make ppcinstall - make ppc64fuzz + - name: PPC64LE + Fuzz test # ~13mn + if: branch = master + arch: ppc64le + script: + - cat /proc/cpuinfo + - make test + # note : we already have aarch64 tests on hardware - name: Qemu aarch64 + Fuzz Test (on Xenial) # ~14mn if: branch = master