7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-07-01 10:33:34 +00:00
tutor/.travis.yml

15 lines
370 B
YAML
Raw Normal View History

language: minimal
2018-05-30 16:07:34 +00:00
services:
- docker
script:
- make configure SILENT=1 ACTIVATE_NOTES=1 ACTIVATE_XQUEUE=1
- make build
- make migrate
#- make assets # too time-consuming
2018-05-30 16:07:34 +00:00
deploy:
provider: script
script: docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD" && make push
2018-06-01 14:34:09 +00:00
on:
all_branches: true
condition: $TRAVIS_BRANCH =~ ^master|release\/.*$