FLTK logo

[master] 4531c6c - Travis-CI: simplify config, disable macOS build (temp.)

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.commit  ]
 
Previous Message ]Next Message ]

[master] 4531c6c - Travis-CI: simplify config, disable macOS build (temp.) "Albrecht Schlosser" Nov 30, 2020  
 
commit 4531c6c48f5d49b04c6363494ccfb6a6156e1722
Author:     Albrecht Schlosser <albrechts.fltk@online.de>
AuthorDate: Tue Dec 1 02:03:32 2020 +0100
Commit:     Albrecht Schlosser <albrechts.fltk@online.de>
CommitDate: Tue Dec 1 02:03:32 2020 +0100

    Travis-CI: simplify config, disable macOS build (temp.)
    
    Note: macOS builds will be re-enabled when the Travis-CI
      "Credits" issue is resolved.

 .travis.yml | 23 +++++++++++------------
 1 file changed, 11 insertions(+), 12 deletions(-)

diff --git .travis.yml .travis.yml
index 13398ef..1405dfe 100644
--- .travis.yml
+++ .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:
Direct Link to Message ]
 
     
Previous Message ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.