소스 검색

Creation of directories is not related to cmake installation.

main
offa 7 년 전
부모
커밋
65b60a942d
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +0
    -1
      .travis.yml
  2. +2
    -1
      script/ci_install.sh

+ 0
- 1
.travis.yml 파일 보기

@@ -25,7 +25,6 @@ matrix:

install:
- script/ci_install.sh
- export PATH="${DEPENDENCY_DIR}/cmake/bin:${PATH}"

script:
- script/ci_build.sh

+ 2
- 1
script/ci_install.sh 파일 보기

@@ -2,9 +2,10 @@

BUILD_DIR=${TRAVIS_BUILD_DIR}

## Install CMake
mkdir -p "${DEPENDENCY_DIR}" && cd "${DEPENDENCY_DIR}"


## Install CMake
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

Loading…
취소
저장