mpir/.travis.yml

20 lines
317 B
YAML
Raw Normal View History

2015-10-03 08:35:25 -04:00
language: c
sudo: false
os:
- osx
- linux
compiler:
- gcc
- clang
addons:
apt:
packages:
- texinfo
2015-10-03 08:58:24 -04:00
script:
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]] && [[ "${CC}" == "gcc" ]]; then
export CC=gcc-4.8;
export CXX=g++-4.8;
fi
- $CC --version
2015-10-03 08:58:24 -04:00
- ./configure && make && make check