tutor/.gitlab-ci.yml

85 lines
1.5 KiB
YAML
Raw Normal View History

stages:
2019-10-09 10:31:47 +00:00
- test
- build
- deploy:images
- deploy:pypi
- deploy:docs
2019-10-09 10:31:47 +00:00
test:
script:
2019-10-09 11:38:17 +00:00
- apk add --no-cache make
- make ci-install-alpine-requirements
2019-10-09 10:31:47 +00:00
- python setup.py install
- make ci-install-python-requirements
2019-10-09 10:31:47 +00:00
- make test
build:images:
script:
2019-10-09 11:38:17 +00:00
- apk add --no-cache make
- make ci-install-alpine-requirements
- python setup.py install
- make ci-build-images
tags:
- private
stage: build
build:docs:
script:
- apk add --no-cache make
2019-10-09 11:38:17 +00:00
- make ci-install-alpine-requirements
- pip install -r requirements/docs.txt
- cd docs && make
artifacts:
paths:
- docs/_build/html
stage: build
build:pypi:
script:
- apk add --no-cache make
2019-10-09 11:38:17 +00:00
- make ci-install-alpine-requirements
- make ci-install-python-requirements
- make package
artifacts:
paths:
- dist/
stage: build
deploy:images:
script:
2019-10-09 11:38:17 +00:00
- apk add --no-cache make
- make ci-install-alpine-requirements
- python setup.py install
- make ci-push-images
only:
- tags
tags:
- private
stage: deploy:images
deploy:pypi:
script:
- apk add --no-cache make
2019-10-09 11:38:17 +00:00
- make ci-install-alpine-requirements
- make ci-install-python-requirements
- make ci-pypi
dependencies:
- build:pypi
only:
- tags
tags:
- private
stage: deploy:pypi
deploy:docs:
dependencies:
- build:docs
script:
2019-06-24 10:49:16 +00:00
- rm -rf /var/www/docs.tutor.overhang.io
- mv docs/_build/html/ /var/www/docs.tutor.overhang.io
only:
- tags
tags:
- private
stage: deploy:docs