Files
openstreetmap-tile-server/.travis.yml
T

19 lines
334 B
YAML
Raw Normal View History

2019-12-21 22:42:40 +01:00
os: linux
language: minimal
2019-12-21 21:57:57 +01:00
services:
- docker
before_install:
- echo "Before install"
before_script:
- echo "Before script"
script:
2019-12-21 22:42:40 +01:00
- make build
- make test
- make stop
2019-12-21 21:57:57 +01:00
after_script:
- docker images
after_success:
- if [[ "$TRAVIS_BRANCH" == "master" ]]; then echo "One can push to image dockerhub" ; fi
notifications:
email: true