1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-12 10:45:38 +02:00
Mailu/.travis.yml

23 lines
415 B
YAML
Raw Normal View History

2018-09-24 01:23:07 +02:00
sudo: required
services: docker
addons:
apt:
packages:
- docker-ce
env:
- VERSION=$TRAVIS_BRANCH
script:
2018-10-06 16:24:42 +02:00
# Default to mailu for DOCKER_ORG
2018-10-06 16:31:01 +02:00
- if [ -z "$DOCKER_ORG" ]; then export DOCKER_ORG="mailu"; fi
- docker-compose -f tests/build.yml build
2018-10-04 13:42:34 +02:00
- tests/compose/test-script.sh
deploy:
provider: script
script: bash tests/deploy.sh
2018-10-05 12:02:10 +02:00
on:
all_branches: true
condition: -n $DOCKER_UN