Merge remote-tracking branch 'remotes/origin/release/V2.7' into merge-3.0/APPS-230_BuildAGSOnTravis

This commit is contained in:
rodicasutu
2020-07-07 17:36:37 +03:00
parent fe06572840
commit 004761bf3c
3 changed files with 28 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
echo "Branch name: ${TRAVIS_BRANCH}"
echo "Pull request: ${TRAVIS_PULL_REQUEST}"
if [[ "${TRAVIS_BRANCH}" == "master" || "${TRAVIS_BRANCH}" = release* ]] && [ "${TRAVIS_PULL_REQUEST}" == "false" ];
then
export MAVEN_PHASE="deploy"
else
export MAVEN_PHASE="verify"
fi