Skip to content
Snippets Groups Projects
Commit ad466a22 authored by Georgiy Eterevskiy's avatar Georgiy Eterevskiy
Browse files

Add gitlab-ci config

parent 975f1786
No related branches found
No related tags found
1 merge request!19Add config for gitlab-ci
image: python:3.8-alpine
stages:
- upload
.upload:
stage: upload
variables:
PYPI_PASSWORD: $PYPI_PASSWORD
script:
- apk add bash make gcc g++ linux-headers musl-dev
- make release
- echo "Job \"$CI_JOB_STAGE\" was successful!"
upload-develop:
extends: .upload
variables:
PYPI_REPO: https://pypi.perx.ru/root/develop
only:
- master
upload-production:
extends: .upload
variables:
PYPI_REPO: https://pypi.perx.ru/root/master
only:
- tags
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment