summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2020-12-01 02:03:32 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2020-12-01 02:03:32 +0100
commit4531c6c48f5d49b04c6363494ccfb6a6156e1722 (patch)
tree712648d1bcf36f5d68ddbe60379021c86d9397be
parentda5dc6eebf559918c8090e3cf5ec4d35a90148a1 (diff)
Travis-CI: simplify config, disable macOS build (temp.)
Note: macOS builds will be re-enabled when the Travis-CI "Credits" issue is resolved.
-rw-r--r--.travis.yml23
1 files changed, 11 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml
index 13398ef58..1405dfee6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,10 +1,9 @@
dist: xenial
-osx_image: xcode12.2
+# osx_image: xcode12.2
cache: ccache
-language:
- - c++
+language: cpp
os:
- linux
@@ -12,17 +11,17 @@ os:
compiler:
- gcc
- - clang
+ ## disabled: - clang
env:
- |
ANALYZE=false
DOC=false
-matrix:
+jobs:
include:
os: linux
- compiler: clang
+ ## compiler: clang
## env: ANALYZE=true DOC=true
branches:
@@ -36,15 +35,15 @@ branches:
before_script:
- |
- if [ $TRAVIS_OS_NAME == linux ]; then
+ if [ $TRAVIS_OS_NAME = linux ]; then
sudo apt-get update -q
sudo apt-get install -y libxinerama-dev libxcursor-dev libasound2-dev libglew-dev
sudo apt-get install -y doxygen
- elif [ $TRAVIS_OS_NAME == osx ]; then
- brew install ccache # need to install on macOS
- # brew install glew # libGLEW not needed on macOS
- export PATH="/usr/local/opt/ccache/libexec:$PATH"
- brew install doxygen
+ elif [ $TRAVIS_OS_NAME = osx ]; then
+ # brew install ccache # need to install on macOS
+ # export PATH="/usr/local/opt/ccache/libexec:$PATH"
+ # brew install doxygen
+ echo "macOS build is currently disabled"
fi
script: