You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
471 B
Bash
17 lines
471 B
Bash
#!/bin/bash
|
|
|
|
# Skip deploy for staging branch
|
|
[ "$TRAVIS_BRANCH" = "staging" ] && exit 0
|
|
|
|
# Retag in case of `bors try`
|
|
if [ "$TRAVIS_BRANCH" = "testing" ]; then
|
|
export DOCKER_ORG="mailutest"
|
|
# Commit message is like "Try #99".
|
|
# This sets the version tag to "pr-99"
|
|
export MAILU_VERSION="pr-${TRAVIS_COMMIT_MESSAGE//[!0-9]/}"
|
|
docker-compose -f tests/build.yml build
|
|
fi
|
|
|
|
docker login -u $DOCKER_UN -p $DOCKER_PW
|
|
docker-compose -f tests/build.yml push
|