ACS-1464 Rename the local docker build profiles into *build-docker-images*

This commit is contained in:
Cezar.Leahu
2021-04-28 00:34:48 +03:00
parent 4d04559a26
commit 878eb3750f
4 changed files with 6 additions and 6 deletions

View File

@@ -10,8 +10,8 @@ if isBranchBuild && [ "${TRAVIS_BRANCH}" = "master" ] && [ "${TRAVIS_BUILD_STAGE
# update ":latest" image tags on remote repositories by using the maven *internal* profile
PROFILES="-Pinternal"
else
# build the ":latest" image tags locally with the maven *communityDocker* profile
PROFILES="-PcommunityDocker"
# build the ":latest" image tags locally with the maven *build-docker-images* profile
PROFILES="-Pbuild-docker-images"
fi
mvn -B -V install -DskipTests -Dmaven.javadoc.skip=true "${PROFILES}"