Skip to content

Commit

Permalink
Increase Gradle log verbosity on CI (#19)
Browse files Browse the repository at this point in the history
* Increase Gradle log verbosity on CI

* remove --info from normal build to not hit travis log limit
  • Loading branch information
artem-zinnatullin authored and ameliariely committed Aug 15, 2019
1 parent 2f09957 commit bacc629
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pushd "$PROJECT_DIR"
# Export "PUBLISH_RELEASE=true" to initiate release process.
if [ "${PUBLISH_RELEASE:-}" != "true" ]; then
echo "Running non-release build...".
./gradlew build
./gradlew --stacktrace build
else
echo "Launching release publishing process..."

Expand Down Expand Up @@ -53,5 +53,5 @@ else
echo 'GPG ownertrust imported successfully.'
unset GPG_OWNERTRUST

./gradlew build publishToSonatype -Psigning.keyId="$GPG_KEY_ID" -Psigning.password="$GPG_PASSPHRASE" -Psigning.secretKeyRingFile="$HOME/.gnupg/secring.gpg"
fi
./gradlew --stacktrace --info build publishToSonatype -Psigning.keyId="$GPG_KEY_ID" -Psigning.password="$GPG_PASSPHRASE" -Psigning.secretKeyRingFile="$HOME/.gnupg/secring.gpg"
fi

0 comments on commit bacc629

Please sign in to comment.