glfw/.travis.yml

39 lines
725 B
YAML
Raw Normal View History

2015-04-14 21:47:17 +00:00
language: c
compiler: clang
branches:
only:
2016-02-04 13:58:44 +00:00
- ci
2015-04-14 21:47:17 +00:00
- master
os:
- linux
- osx
sudo: false
dist: trusty
addons:
apt:
sources:
- kubuntu-backports
packages:
- cmake
- libxrandr-dev
- libxinerama-dev
- libxcursor-dev
- libxi-dev
env:
global:
- CFLAGS=-Werror
matrix:
- BUILD_SHARED_LIBS=ON
- BUILD_SHARED_LIBS=OFF
2015-04-14 21:47:17 +00:00
script:
2016-02-04 14:44:20 +00:00
- mkdir build
- cd build
2017-07-17 21:42:37 +00:00
- cmake -DCMAKE_VERBOSE_MAKEFILE=ON -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS} ..
- cmake --build .
2015-04-14 21:47:17 +00:00
notifications:
2016-02-04 13:58:44 +00:00
email:
recipients:
- ci@glfw.org
2015-04-14 21:47:17 +00:00
on_success: never
on_failure: always