Skip to content

Commit

Permalink
Adds compile_and_run_test.sh script.
Browse files Browse the repository at this point in the history
  • Loading branch information
ubuntu committed Mar 13, 2013
1 parent 5c79f38 commit f750dc3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -4,6 +4,6 @@ compiler:


before_script: chmod +x ./snap/install.py; ./snap/install.py
script: chmod +x ./build_and_run_test.sh; ./build_and_run_test.sh
script: chmod +x ./compile_and_run_test.sh; ./compile_and_run_test.sh
after_script: cat ./build/Testing/Temporary/LastTest.log

10 changes: 10 additions & 0 deletions compile_and_run_test.sh
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
mkdir build
cd build
cmake ..
cmake ..
cmake ..
make
make
make test
exit

0 comments on commit f750dc3

Please sign in to comment.