mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
e4e3e50867
By setting dist explicitly to trusty, which has cmake >= 2.8.12 in their official package repository and installing newly non-default packages explicitly. Closes #1015.
36 lines
640 B
YAML
36 lines
640 B
YAML
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:
|
|
- BUILD_SHARED_LIBS=ON
|
|
- BUILD_SHARED_LIBS=OFF
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS} ..
|
|
- cmake --build .
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- ci@glfw.org
|
|
on_success: never
|
|
on_failure: always
|