aboutsummaryrefslogtreecommitdiff
path: root/.travis.sh
AgeCommit message (Collapse)Author
2017-02-19Blacklist PGI from using conformant array parameters. (#511)Evan Nemerson
* Blacklist PGI from using conformant array parameters. There is a bug in pgcc with conformant array parameters where the length argument is a pointer which triggers a compiler error (PGC-S-0094, to be specific). The issue has been reported to PGI and is being tracked internally as TPR 23778. For more information, see https://www.pgroup.com/userforum/viewtopic.php?t=5501 * travis: Add PGI Community Edition build. For details on the installation script, see https://github.com/nemequ/pgi-travis
2016-10-31Python: Use "build" instead of "build_ext" in scripts (#460)Alex Nicksay
Previously, the Python package consisted of a single extension module, so `build_ext` was sufficient. Now, the package contains a native module and an extension module, so both `build_py` and `build_ext` are required. Instead, run `build`, which calls both `build_py` and `build_ext` automatically.
2016-08-10.travis.sh: skip source venv on linuxCosimo Lupo
2016-08-10.travis.sh: only build wheels on OSXCosimo Lupo
2016-08-10.travis.sh: explicitly use 'bash' shell instead of generic 'sh'Cosimo Lupo
I need to use 'source' command to activate the python virtual environment, but apparently that is not available on Ubuntu's default /bin/sh
2016-08-10.travis.sh: activate virtualenv before calling python or pip commandsCosimo Lupo
2016-07-28Add mingw support.Evan Nemerson
2016-07-26Add UBSan build, use clang for sanitizer builds.Evan Nemerson
2016-07-26travis: add many additional buildsEvan Nemerson