Skip to content

Commit

Permalink
fix(travis): Skip 'check' when doing release builds (#4069)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajordens committed Oct 3, 2019
1 parent 7834321 commit 74fb2a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gradle/buildViaTravis.sh
Expand Up @@ -16,10 +16,10 @@ elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ]; then
version-*)
;; # Ignore Spinnaker product release tags.
*-rc\.*)
$GRADLE -Prelease.travisci=true -Prelease.useLastTag=true -PbintrayUser="${bintrayUser}" -PbintrayKey="${bintrayKey}" -x test candidate --stacktrace
$GRADLE -Prelease.travisci=true -Prelease.useLastTag=true -PbintrayUser="${bintrayUser}" -PbintrayKey="${bintrayKey}" -x test -x check candidate --stacktrace
;;
*)
$GRADLE -Prelease.travisci=true -Prelease.useLastTag=true -PbintrayUser="${bintrayUser}" -PbintrayKey="${bintrayKey}" -x test final --stacktrace
$GRADLE -Prelease.travisci=true -Prelease.useLastTag=true -PbintrayUser="${bintrayUser}" -PbintrayKey="${bintrayKey}" -x test -x check final --stacktrace
;;
esac
else
Expand Down

0 comments on commit 74fb2a5

Please sign in to comment.