You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
722 B
43 lines
722 B
git:
|
|
depth: 5
|
|
branches:
|
|
only:
|
|
- master
|
|
language: c
|
|
sudo: required
|
|
os:
|
|
- linux
|
|
- osx
|
|
dist: trusty
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- python
|
|
- python-dev
|
|
- python3
|
|
- python3-dev
|
|
- swig
|
|
- gcc-multilib
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
compiler: clang
|
|
env: HOST=i686-linux-gnu
|
|
- os: linux
|
|
compiler: gcc
|
|
env: HOST=i686-linux-gnu
|
|
- compiler: gcc
|
|
os: linux
|
|
env: PYTHON_VERSION=3.4
|
|
|
|
before_script:
|
|
- ./tools/cleanup.sh && ./tools/autogen.sh
|
|
before_install:
|
|
- ./tools/travis_install.sh
|
|
script:
|
|
- ./tools/travis_build.sh
|
|
notifications:
|
|
email: false
|
|
|