1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00
glfw/.travis.yml

31 lines
516 B
YAML
Raw Normal View History

2015-04-14 17:47:17 -04:00
language: c
compiler: clang
branches:
only:
2016-02-04 08:58:44 -05:00
- ci
2015-04-14 17:47:17 -04:00
- master
os:
- linux
- osx
sudo: false
addons:
apt:
sources:
- kubuntu-backports
packages:
- cmake
env:
- BUILD_SHARED_LIBS=ON
- BUILD_SHARED_LIBS=OFF
2015-04-14 17:47:17 -04:00
script:
2016-02-04 09:44:20 -05:00
- mkdir build
- cd build
- cmake -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS} ..
- cmake --build .
2015-04-14 17:47:17 -04:00
notifications:
2016-02-04 08:58:44 -05:00
email:
recipients:
- ci@glfw.org
2015-04-14 17:47:17 -04:00
on_success: never
on_failure: always