fonttools/.travis.yml
Behdad Esfahbod 80966aa7e3 Revert "[travis] compile Brotli using build_ext --libraries=stdc++ on pypy3"
This reverts commit 76dbfef6d4bb11eb4c796f26ebebe1045b6dbbf8.

We don't support pypy3 anymore, until it's updated to 3.3, which shouldn't need
this fix.
2015-08-24 11:48:07 +01:00

26 lines
787 B
YAML

language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
# - "pypy3" # Disable pypy3 until Travis updates it to >= 3.3
before_install:
# install GCC v4.8 with better C++11 support, required to build Brotli extension
# See: https://github.com/travis-ci/travis-ci/issues/1379
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq update
- sudo apt-get install -qq gcc-4.8
- sudo apt-get install -qq g++-4.8
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- g++ --version
install:
- pip install -vr requirements.txt
- make install
script:
- make check
notifications:
irc: "irc.freenode.org##fonts"
email: fonttools@googlegroups.com