aboutsummaryrefslogtreecommitdiff
path: root/glfw-3.2.1/.travis.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/.travis.yml
Initial Commit
Diffstat (limited to 'glfw-3.2.1/.travis.yml')
-rw-r--r--glfw-3.2.1/.travis.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/glfw-3.2.1/.travis.yml b/glfw-3.2.1/.travis.yml
new file mode 100644
index 0000000..ff1c6c3
--- /dev/null
+++ b/glfw-3.2.1/.travis.yml
@@ -0,0 +1,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