From a15f7cbaf638f85f9f0edcf4a34bbdca75b59c75 Mon Sep 17 00:00:00 2001 From: Jan Holthuis Date: Fri, 22 May 2020 11:27:24 +0200 Subject: .travis.yml: Reorder macOS before_install steps and add comments --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6c15e0dced..812ddf9106 100644 --- a/.travis.yml +++ b/.travis.yml @@ -152,14 +152,16 @@ jobs: CMAKE_BUILD_PARALLEL_LEVEL=4 CTEST_PARALLEL_LEVEL=1 before_install: + # Print some information about CMake and ccache + - cmake --version + - ccache -s + # Download and prepare our build environment - mkdir "${MIXXX_ENVPATH}" - read -r MIXXX_ENVNAME < build/osx/golden_environment - curl "https://downloads.mixxx.org/builds/buildserver/2.3.x-macosx/${MIXXX_ENVNAME}.tar.gz" | tar xzf - --strip 1 -C "${MIXXX_ENVPATH}" # FIXME: This fixes some wrong hardcoded paths inside pkg-config files of the build environment (e.g. in "lib/pkgconfig/taglib.pc") # This will only work if neither MIXXX_ENVNAME nor MIXXX_ENVPATH contain special regex characters! - find "${MIXXX_ENVPATH}" -name "*.pc" -or -path "*/bin/taglib-config" -exec sed -i".orig" -e "s|/Users/mixxx/bs-2.3-mac/amd64/environment/${MIXXX_ENVNAME}|${MIXXX_ENVPATH}|g" {} \; - - cmake --version - - ccache -s install: - mkdir cmake_build - cd cmake_build -- cgit v1.2.3