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

Add big-endian case (arch: s390x) as allow_failures. #970

Closed
wants to merge 1 commit into from
Closed
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
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,24 @@ matrix:
os: linux
env: CFLAGS="-std=c99 -pedantic" USE_CONFIG=yes

# Big-endian
- compiler: gcc
arch: s390x
os: linux
env: USE_CONFIG=yes
addons:
apt:
packages:
- libbz2-dev
- liblzma-dev

allow_failures:
# The build is failed in big-endian environment (arch: s390x).
# BCF header code makes no attempt to account for endianness
# https://github.com/samtools/htslib/issues/355
- arch: s390x
fast_finish: true

# For MacOSX systems
before_install:
- |
Expand Down