소스 검색

Build steps moved to script.

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

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

@@ -52,11 +52,5 @@ matrix:
sources: *sources

script:
- if [[ "$CXX" == clang* ]]; then export CXXFLAGS="-stdlib=libc++"; fi
- mkdir build && cd build
- cmake ..
- make
- make unittest


- script/ci_build.sh


+ 12
- 0
script/ci_build.sh 파일 보기

@@ -0,0 +1,12 @@
#!/bin/bash

if [[ "$CXX" == clang* ]]; then
export CXXFLAGS="-stdlib=libc++"
fi

mkdir build && cd build

cmake ..
make
make unittest


Loading…
취소
저장