aboutsummaryrefslogtreecommitdiff
path: root/glfw-3.2.1/.travis.yml
blob: ff1c6c352b906417e09c1cc81e8886f247a192ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
language: c
compiler: clang
branches:
    only:
        - ci
        - master
os:
    - linux
    - osx
sudo: false
addons:
    apt:
        sources:
            - kubuntu-backports
        packages:
            - cmake
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