25 lines
405 B
YAML
25 lines
405 B
YAML
language: cpp
|
|
os:
|
|
- linux
|
|
- osx
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
compiler: gcc
|
|
env: HOST=i386-pc-linux-gnu
|
|
|
|
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}
|
|
- make
|
|
- make dist
|
|
- make check
|
|
- cat */testsuite/libffi.log
|