diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | scripts/travis-ci.sh | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 04d4728..786e1a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,4 +10,4 @@ branches: only: - travis -script: echo "Success" +script: ./scripts/travis-ci.sh diff --git a/scripts/travis-ci.sh b/scripts/travis-ci.sh new file mode 100755 index 0000000..a5ea97f --- /dev/null +++ b/scripts/travis-ci.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +qmake +make +cd tests +cmake . +make +ctest |