glfw/.appveyor.yml

23 lines
460 B
YAML
Raw Normal View History

2016-02-04 13:58:44 +00:00
branches:
only:
- ci
- master
skip_tags: true
2016-02-04 13:05:47 +00:00
environment:
matrix:
- BUILD_SHARED_LIBS: ON
- BUILD_SHARED_LIBS: OFF
2016-02-04 13:58:44 +00:00
matrix:
fast_finish: true
2016-02-04 13:05:47 +00:00
build_script:
2016-02-04 14:44:20 +00:00
- mkdir build
- cd build
- cmake -DBUILD_SHARED_LIBS=%BUILD_SHARED_LIBS% ..
2016-02-04 13:05:47 +00:00
- cmake --build .
2016-02-04 13:58:44 +00:00
notifications:
- provider: Email
2016-02-04 14:55:54 +00:00
to:
- ci@glfw.org
- on_build_failure: true
- on_build_success: false