Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added ppc64le tests on travis #1929

Merged
merged 1 commit into from
Dec 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,6 @@ _zstdbench/
googletest/
*.d
*.vscode
*.code-workspace
compile_commands.json
.clangd
.clangd
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down