Browse Source

Output of CMake version, cleanup and formatting of CI config.

main
offa 7 years ago
parent
commit
b3164862bd
1 changed files with 10 additions and 11 deletions
  1. +10
    -11
      .travis.yml

+ 10
- 11
.travis.yml View File

@@ -60,18 +60,17 @@ matrix:
sources: *sources

install:
- mkdir -p "${DEPENDENCY_DIR}" && cd "${DEPENDENCY_DIR}"
- |
if [[ ! -d "$(ls -A ${DEPENDENCY_DIR}/cmake)" ]]; then
CMAKE_URL="https://cmake.org/files/v3.8/cmake-3.8.2-Linux-x86_64.tar.gz"
mkdir -p cmake && travis_retry wget --no-check-certificate --quiet -O - "${CMAKE_URL}" | tar --strip-components=1 -xz -C cmake
fi
export PATH="${DEPENDENCY_DIR}/cmake/bin:${PATH}"
- cd ${TRAVIS_BUILD_DIR}
- mkdir -p "${DEPENDENCY_DIR}" && cd "${DEPENDENCY_DIR}"
- |
if [[ ! -d "$(ls -A ${DEPENDENCY_DIR}/cmake)" ]]; then
CMAKE_URL="https://cmake.org/files/v3.8/cmake-3.8.2-Linux-x86_64.tar.gz"
mkdir -p cmake && travis_retry wget --no-check-certificate --quiet -O - "${CMAKE_URL}" | tar --strip-components=1 -xz -C cmake
fi
export PATH="${DEPENDENCY_DIR}/cmake/bin:${PATH}"
- cd ${TRAVIS_BUILD_DIR}


script:
- pwd
- ls
- script/ci_build.sh
- cmake --version
- script/ci_build.sh


Loading…
Cancel
Save