diff options
| author | Ahmad Fatoum <ahmad@a3f.at> | 2018-05-10 23:47:38 +0200 |
|---|---|---|
| committer | Ahmad Fatoum <ahmad@a3f.at> | 2018-05-11 01:24:38 +0200 |
| commit | 7243cebad1e80eba932cfab8d512133a194a01cb (patch) | |
| tree | 5aa2b06c4459981d28d036f30fc96dcfa5991c3b | |
| parent | 0adb4b67de6dfe3f7a0a557130dffc3b8f4d6a43 (diff) | |
| download | raylib-7243cebad1e80eba932cfab8d512133a194a01cb.tar.gz raylib-7243cebad1e80eba932cfab8d512133a194a01cb.zip | |
Travis CI: Test building with external GLFW
| -rw-r--r-- | .travis.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 4cb6b0ea..13123045 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,9 @@ matrix: - os: linux env: ARCH=amd64 sudo: required + - os: linux + env: ARCH=amd64 GLFW=SYSTEM + sudo: required - os: osx env: ARCH=universal @@ -48,7 +51,9 @@ script: - cd build - cmake $CMAKE_ARCH_ARGS -DMACOS_FATLIB=ON -DSTATIC=ON -DSHARED=ON -DBUILD_EXAMPLES=ON -DBUILD_GAMES=ON -DUSE_EXTERNAL_GLFW=IF_POSSIBLE .. - make VERBOSE=1 - - make package + - if [ "$GLFW" != "SYSTEM" ]; then make package; fi; + - sudo make install + - pkg-config --static --libs raylib deploy: provider: releases |
