From 10caae5e74653336605b6e8254c7571d248c242e Mon Sep 17 00:00:00 2001 From: Clownacy Date: Mon, 13 Jul 2020 20:30:48 +0100 Subject: [PATCH] Fix Travis script I also apparently managed to speed up macOS compilation from 13 minutes to 5. --- .travis.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 265edefa..8b9f80bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,9 +8,6 @@ dist: bionic # Enable C++ language support language: cpp -# Cache compiled object files with ccache -cache: ccache - osx_image: xcode11.3 compiler: @@ -45,7 +42,6 @@ addons: - sdl2 - glfw - freetype - update: true env: - PLATFORM=SDL2 AUDIO=SDL2 RENDERER=Software @@ -116,14 +112,6 @@ install: # Recommanded build directory - CMAKE_BUILD_DIR=build - # Install ccache on OSX - - | - if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then - # This is OSX - brew install ccache - export PATH="/usr/local/opt/ccache/libexec:$PATH" - fi - before_script: # Make build directory and generate CMake build files - mkdir -p ${CMAKE_BUILD_DIR} && cd ${CMAKE_BUILD_DIR}