avoid double cd in travis

This commit is contained in:
Yuichi Nishiwaki 2014-03-02 13:32:56 +09:00
parent e4d4c51e78
commit 5475344bed
1 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,8 @@ language: c
compiler:
- gcc
- clang
before_script:
- cd build
script:
- cd build && cmake .. && make && make no-act
- cd build && cmake -DCMAKE_BULD_TYPE=Debug .. && make && make no-act
- cmake .. && make && make no-act
- cmake -DCMAKE_BULD_TYPE=Debug .. && make && make no-act