aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2020-07-24 01:10:56 +0200
committercbdev <cb@cbcdn.com>2020-07-24 01:10:56 +0200
commit7734eb3947df0ba586ff6c3ee7e1098b04f53bab (patch)
tree9f184d9cf7a1dd82e4ef6f00b36d801f023bc833
parentf2595e910e98abcb25deea80b37a8fb095e72efa (diff)
downloadmidimonster-7734eb3947df0ba586ff6c3ee7e1098b04f53bab.tar.gz
midimonster-7734eb3947df0ba586ff6c3ee7e1098b04f53bab.tar.bz2
midimonster-7734eb3947df0ba586ff6c3ee7e1098b04f53bab.zip
Remove OSX gcc build
-rw-r--r--.travis.yml11
1 files changed, 1 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml
index 5f60e59..9fbe236 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -84,11 +84,6 @@ jobs:
- TASK='compile'
- os: osx
osx_image: xcode10.2
- compiler: gcc
- env:
- - TASK='compile'
- - os: osx
- osx_image: xcode10.2
compiler: clang
env:
- TASK='sanitize'
@@ -119,7 +114,7 @@ env:
# No colours in terminal (to reduce log file size)
- TERM=dumb
# Parallel make build
- - MAKEFLAGS="-j 2"
+ - MAKEFLAGS="-j 4"
cache:
apt: true
@@ -139,10 +134,6 @@ before_install:
- export LDFLAGS="$LDFLAGS -L/usr/local/opt/openssl@1.1/lib"
#Use the latest clang if we're compiling with clang
- if [ "$TRAVIS_OS_NAME" == "linux" -a "$CC" = "clang" ]; then export CC="clang-6.0"; export CXX="clang-6.0"; fi
-#Report the compiler versions
- - $CC --version
-#OS X uses something other than $CXX variable
- - if [ "$TRAVIS_OS_NAME" == "linux" -a \( "$TASK" = "compile" -o "$TASK" = "sanitize" \) ]; then $CXX --version; fi
# Download libraries to link with for Windows
- if [ "$TASK" == "windows" ]; then wget "https://downloads.sourceforge.net/project/luabinaries/5.3.5/Windows%20Libraries/Dynamic/lua-5.3.5_Win64_dllw6_lib.zip" -O lua53.zip; unzip lua53.zip lua53.dll; fi