forked from s3lph/matemat
Added a staging deployment CI job.
This commit is contained in:
parent
68a228e95f
commit
69e08a70be
1 changed files with 14 additions and 5 deletions
|
@ -3,8 +3,8 @@ image: s3lph/matemat-ci:20180711-01
|
|||
|
||||
stages:
|
||||
- test
|
||||
- codestyle
|
||||
- deploy
|
||||
- build
|
||||
- staging
|
||||
|
||||
test:
|
||||
stage: test
|
||||
|
@ -14,15 +14,24 @@ test:
|
|||
- sudo -u matemat python3-coverage report -m --include 'matemat/*' --omit '*/test_*.py'
|
||||
|
||||
codestyle:
|
||||
stage: codestyle
|
||||
stage: test
|
||||
script:
|
||||
- pip3 install -r requirements.txt
|
||||
- sudo -u matemat pycodestyle matemat
|
||||
# - sudo -u matemat mypy --ignore-missing-imports --strict -p matemat
|
||||
|
||||
docker_build_push:
|
||||
stage: deploy
|
||||
build:
|
||||
stage: build
|
||||
script:
|
||||
- docker build -t "registry.gitlab.com/s3lph/matemat:$(git rev-parse HEAD)" .
|
||||
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_TOKEN registry.gitlab.com
|
||||
- docker push "registry.gitlab.com/s3lph/matemat:$(git rev-parse HEAD)"
|
||||
|
||||
staging:
|
||||
stage: staging
|
||||
script:
|
||||
- ssh add - <<<"$STAGING_SSH_PRIVATE_KEY"
|
||||
- echo "$(git rev-parse HEAD)" | ssh -p 20022 matemat@kernelpanic.lol
|
||||
environment:
|
||||
- name: staging
|
||||
- url: https://matemat.kernelpanic.lol/
|
||||
|
|
Loading…
Reference in a new issue