We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a189252 commit 7bd9792Copy full SHA for 7bd9792
.travis.yml
@@ -52,7 +52,7 @@ after_success:
52
deploy:
53
- provider: script
54
skip_cleanup: true
55
- script: travis_wait 30 ./gradlew bintrayUpload
+ script: ".utility/deploy-travis-wrapper.sh"
56
on:
57
tags: true
58
jdk: openjdk7
.utility/deploy-travis-wrapper.sh
@@ -0,0 +1,10 @@
1
+#!/bin/bash
2
+
3
+./gradlew bintrayUpload &
4
5
+# output every 9 min to prevent a Travis timeout
6
+PID=$!
7
+while [[ `ps -p $PID | tail -n +2` ]]; do
8
+ echo 'Deploying...'
9
+ sleep 540
10
+done
0 commit comments