mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
Added power support for the travis.yml file with ppc64le. This is part of the Ubuntu distribution for ppc64le.
31 lines
625 B
YAML
31 lines
625 B
YAML
arch:
|
|
- amd64
|
|
- ppc64le
|
|
language: c
|
|
|
|
# Use newer travis container-based infrastructure
|
|
sudo: false
|
|
|
|
# Install flex dependency
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- flex
|
|
- autoconf
|
|
- libtool
|
|
|
|
# Build using gcc and clang since it is supported
|
|
# Note: 'clang -fsanitize=address' is not the right way to get an ASAN build.
|
|
# This needs work.
|
|
compiler:
|
|
- gcc
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
before_script: df -h && autoreconf -fiv
|
|
|
|
script: ./configure && make && make check && make distcheck && make CC=$CC -C c -f Makefile.no-autoconfig
|
|
|
|
after_failure: wc -l c/reg_test/test-suite.log && cat c/reg_test/test-suite.log
|