Skip to content

Commit

Permalink
ci: Use path based on Bash script
Browse files Browse the repository at this point in the history
  • Loading branch information
mattheworiordan committed Jul 26, 2017
1 parent 3c5e152 commit a1b30b3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ci/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
set -ex
export TERM=dumb

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

ret=0
../gradlew java:testRestSuite || ret=1
../gradlew java:testRealtimeSuite || ret=1
$DIR/../../gradlew java:testRestSuite || ret=1
$DIR/../../gradlew java:testRealtimeSuite || ret=1
exit $ret

0 comments on commit a1b30b3

Please sign in to comment.