Skip to content

Commit

Permalink
move build.sh to /build/
Browse files Browse the repository at this point in the history
  • Loading branch information
ikeyasu committed May 24, 2015
1 parent 9540897 commit 22ca52f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ before_install:
- bash .travis-tmp/cmake-3.2.2/cmake-3.2.2-Linux-x86_64.sh --exclude-subdir --prefix=.travis-tmp/cmake-3.2.2 --skip-license
- export PATH=`pwd`/.travis-tmp/cmake-3.2.2/bin:$PATH
script:
- cmake -Dtest=ON && make && ctest -V
- pushd build && ./build.sh && popd
- ./script/travis_format_checcker.sh
5 changes: 0 additions & 5 deletions build.sh

This file was deleted.

7 changes: 7 additions & 0 deletions build/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh
set -eu

cd -- "$(dirname -- "$0")"
cmake -Dtest=ON ..
make
ctest -V

0 comments on commit 22ca52f

Please sign in to comment.