Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 631e334

Browse files
committed
fixing travis issues
1 parent 531d783 commit 631e334

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ before_install:
88
install:
99
- ./shared/dev-tasks/install-dependencies.sh
1010
script:
11-
- '[ "${TRAVIS_SECURE_ENV_VARS}" = "false" ] && ./gradlew test'
11+
- ./shared/dev-tasks/run-tests.sh

shared/dev-tasks/run-tests.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
if [ "${TRAVIS_SECURE_ENV_VARS}" = "true" ] ; then
4+
cd ${TRAVIS_BUILD_DIR}
5+
./gradlew test
6+
fi

0 commit comments

Comments
 (0)