glfw/.travis.yml
Zbigniew Mandziejewicz 422044b778 Travis file fixes
Move to container-based builds.  Add BUILD_SHARED_LIBS to matrix.
Enable OS X.
2016-02-04 15:51:20 +01:00

29 lines
478 B
YAML

language: c
compiler: clang
branches:
only:
- travis
- master
os:
- linux
- osx
sudo: false
addons:
apt:
sources:
- kubuntu-backports
packages:
- cmake
env:
- BUILD_SHARED_LIBS=ON
- BUILD_SHARED_LIBS=OFF
script:
- cmake -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS} .
- cmake --build .
notifications:
email:
recipients:
- travis@glfw.org
on_success: never
on_failure: always