6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2025-02-02 09:28:25 +00:00
tutor/.travis.yml

15 lines
370 B
YAML
Raw Normal View History

language: minimal
2018-05-30 12:07:34 -04: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 12:07:34 -04:00
deploy:
provider: script
script: docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD" && make push
2018-06-01 10:34:09 -04:00
on:
all_branches: true
condition: $TRAVIS_BRANCH =~ ^master|release\/.*$