Files
cpython-source-deps/.travis.yml
Anthony Green 5314b10671 test static lib
2018-01-10 07:22:51 -05:00

29 lines
485 B
YAML

---
sudo: required
language: cpp
os:
- linux
compiler:
- gcc
- clang
matrix:
include:
- os: linux
compiler: gcc
env: HOST=i386-pc-linux-gnu
env: CONFIGURE_OPTIONS=--disable-shared
install:
- ./.travis/install.sh
script:
- ./autogen.sh
- if test x"$HOST" = x"i386-pc-linux-gnu"; then CC="$CC -m32"; CXX="$CXX -m32"; fi
- ./configure ${HOST+--host=$HOST} ${CONFIGURE_OPTIONS}
- make
- make dist
- make check
- cat */testsuite/libffi.log