summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-05-22 11:27:24 +0200
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-05-22 16:31:13 +0200
commita15f7cbaf638f85f9f0edcf4a34bbdca75b59c75 (patch)
treeb3a14fa3d42284fabd78d000e337d2cb2e2975dc /.travis.yml
parentc02439817ec7928cd1ac3615730f9e2240a22d4d (diff)
.travis.yml: Reorder macOS before_install steps and add comments
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files 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