aboutsummaryrefslogtreecommitdiff
path: root/glfw-3.2.1/.appveyor.yml
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2018-03-09 21:36:10 +0100
committerAndreas Grois <andi@grois.info>2018-03-09 21:36:10 +0100
commit3b734f0d6b9e28c1f2c4ae54e3f46e573e02f4a5 (patch)
tree444542870666e41594e7b493f625ade81d64f885 /glfw-3.2.1/.appveyor.yml
Initial Commit
Diffstat (limited to 'glfw-3.2.1/.appveyor.yml')
-rw-r--r--glfw-3.2.1/.appveyor.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/glfw-3.2.1/.appveyor.yml b/glfw-3.2.1/.appveyor.yml
new file mode 100644
index 0000000..ae658cc
--- /dev/null
+++ b/glfw-3.2.1/.appveyor.yml
@@ -0,0 +1,22 @@
+branches:
+ only:
+ - ci
+ - master
+skip_tags: true
+environment:
+ matrix:
+ - BUILD_SHARED_LIBS: ON
+ - BUILD_SHARED_LIBS: OFF
+matrix:
+ fast_finish: true
+build_script:
+ - mkdir build
+ - cd build
+ - cmake -DBUILD_SHARED_LIBS=%BUILD_SHARED_LIBS% ..
+ - cmake --build .
+notifications:
+ - provider: Email
+ to:
+ - ci@glfw.org
+ - on_build_failure: true
+ - on_build_success: false