You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
38 lines
725 B
38 lines
725 B
language: c |
|
compiler: clang |
|
branches: |
|
only: |
|
- ci |
|
- 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 |
|
script: |
|
- mkdir build |
|
- cd build |
|
- cmake -DCMAKE_VERBOSE_MAKEFILE=ON -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS} .. |
|
- cmake --build . |
|
notifications: |
|
email: |
|
recipients: |
|
- ci@glfw.org |
|
on_success: never |
|
on_failure: always
|
|
|