Skip to content
Snippets Groups Projects
Select Git revision
  • 11e47f08b14436c9759dcfb87af213c0696667db
  • for-vairdraw default protected
  • multi-context-windows
3 results

.travis.yml

Blame
  • .travis.yml 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