Travis: Disable linux builds (temporarily)

This commit is contained in:
Lukas W
2015-01-15 22:26:04 +01:00
parent 4c0705359a
commit eea616f080

View File

@@ -1,18 +1,19 @@
language: cpp
compiler: gcc
matrix:
include:
- env: TARGET_OS=win32
- env: TARGET_OS=win64
- os: osx
os: osx
#matrix:
# include:
# - env: TARGET_OS=win32
# - env: TARGET_OS=win64
# - os: osx
before_install:
- sh ./travis/${TRAVIS_OS_NAME}.${TARGET_OS}.before_install.sh
- sh ./.travis/${TRAVIS_OS_NAME}.${TARGET_OS}.before_install.sh
install:
- sh ./travis/${TRAVIS_OS_NAME}.${TARGET_OS}.install.sh
- sh ./.travis/${TRAVIS_OS_NAME}.${TARGET_OS}.install.sh
before_script:
- mkdir build && cd build
script:
- sh ./travis/${TRAVIS_OS_NAME}.${TARGET_OS}.script.sh
- sh ./.travis/${TRAVIS_OS_NAME}.${TARGET_OS}.script.sh
- make -j4 VERBOSE=1
- if [[ $TARGET_OS != win* ]]; then make tests && ./tests/tests; fi;
before_deploy: make package