mirror of
https://github.com/Alfresco/alfresco-transform-core.git
synced 2025-05-12 17:04:48 +00:00
27 lines
1.1 KiB
Bash
Executable File
27 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "=========================== Starting Test&Deploy Script ==========================="
|
|
PS4="\[\e[35m\]+ \[\e[m\]"
|
|
set -vex
|
|
pushd "$(dirname "${BASH_SOURCE[0]}")/../"
|
|
|
|
# Always build the image, but only publish from the "master" branch
|
|
[ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ] && PROFILE="internal" || PROFILE="local"
|
|
|
|
# If the branch is "master" and the commit is not a Pull Request then deploy the JAR SNAPSHOT artifacts
|
|
[ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ] && DEPLOY="deploy" || DEPLOY="verify"
|
|
|
|
# Do not deploy snapshots for alfresco-transform-core and alfresco-transformer-base
|
|
mvn -B -U \
|
|
clean ${DEPLOY} \
|
|
-DadditionalOption=-Xdoclint:none -Dmaven.javadoc.skip=true \
|
|
-Dparent.core.deploy.skip=true -Dtransformer.base.deploy.skip=true \
|
|
"-P${PROFILE},docker-it-setup,${1}"
|
|
|
|
docker ps -a -q | xargs -r -l docker stop ; docker ps -a -q | xargs -r -l docker rm
|
|
|
|
popd
|
|
set +vex
|
|
echo "=========================== Finishing Test&Deploy Script =========================="
|
|
|