20 lines
464 B
YAML
20 lines
464 B
YAML
|
stages:
|
||
|
- build
|
||
|
- deploy
|
||
|
|
||
|
buiild job:
|
||
|
stage: build
|
||
|
script:
|
||
|
- export PYTHONPATH=.
|
||
|
- export FLASK_APP=period
|
||
|
- apt-get udate -qy
|
||
|
- apt-get install -y python3-dev python3-pip
|
||
|
- pip3 install Flask gunicorn pytest pytest-cov
|
||
|
- pytest tests --cov --cov-report term --cov-report html
|
||
|
|
||
|
deploy job:
|
||
|
stage: deploy
|
||
|
script:
|
||
|
- apt-get update -qy
|
||
|
- apt-get install curl -y
|
||
|
- curl period.ahosking.com/reload?password=BananaHammocks
|