mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-16 18:15:09 +00:00
436ad015cf
Assets collection is too time-consuming. The Travis build fails after 50 minutes. So we don't test it.
15 lines
274 B
YAML
15 lines
274 B
YAML
language: python
|
|
services:
|
|
- docker
|
|
script:
|
|
- make build
|
|
- ./configure --silent
|
|
- make migrate
|
|
#- make assets # too time-consuming
|
|
- docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
|
|
deploy:
|
|
provider: script
|
|
script: make push
|
|
on:
|
|
branch: master
|