From 6f2a089efa4b809e6117d44cd645070351b324bd Mon Sep 17 00:00:00 2001 From: Jonatan Ivanov Date: Wed, 14 Jul 2021 09:46:34 -0700 Subject: [PATCH] Exclude tests from deploy tasks --- gradle/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/deploy.sh b/gradle/deploy.sh index b7c03e0b94..daac482779 100755 --- a/gradle/deploy.sh +++ b/gradle/deploy.sh @@ -1,6 +1,6 @@ #!/bin/bash -e # This script will build the project. -SWITCHES="-s --console=plain" +SWITCHES="-s --console=plain -x test" # circleci does not like multi-line values so they are base64 encoded ORG_GRADLE_PROJECT_SIGNING_KEY="$(echo "$ORG_GRADLE_PROJECT_SIGNING_KEY" | base64 -d)"