miller/.travis.yml
srinivas32 c6e15eee90
added power support arch ppc64le on yml file.
Added power support for the travis.yml file with ppc64le. This is part of the Ubuntu distribution for ppc64le.
2020-11-25 16:38:50 +05:30

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