1
0
mirror of https://github.com/gsi-upm/soil synced 2024-09-20 23:41:41 +00:00
soil/.gitlab-ci.yml

54 lines
1.3 KiB
YAML
Raw Normal View History

2018-12-09 16:09:31 +00:00
stages:
2018-12-08 18:08:47 +00:00
- test
2022-03-07 11:44:40 +00:00
- publish
- check_published
2018-12-08 18:08:47 +00:00
2022-03-07 11:44:40 +00:00
docker:
stage: publish
2018-12-08 18:08:47 +00:00
image:
name: gcr.io/kaniko-project/executor:debug
2018-12-20 14:14:58 +00:00
entrypoint: [""]
2018-12-09 16:22:40 +00:00
tags:
- docker
2018-12-08 18:08:47 +00:00
script:
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
2018-12-20 16:48:58 +00:00
# The skip-tls-verify flag is there because our registry certificate is self signed
- /kaniko/executor --context $CI_PROJECT_DIR --skip-tls-verify --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
2018-12-08 18:08:47 +00:00
only:
- tags
test:
2018-12-09 16:22:40 +00:00
tags:
- docker
2023-04-14 18:07:16 +00:00
image: python:3.8
2018-12-09 16:09:31 +00:00
stage: test
2018-12-08 18:08:47 +00:00
script:
2022-03-07 11:44:40 +00:00
- pip install -r requirements.txt -r test-requirements.txt
- python setup.py test
2022-03-07 11:51:22 +00:00
push_pypi:
2022-03-07 11:44:40 +00:00
only:
- tags
tags:
- docker
2023-04-14 18:07:16 +00:00
image: python:3.8
2022-03-07 11:44:40 +00:00
stage: publish
script:
- echo $CI_COMMIT_TAG > soil/VERSION
- pip install twine
- python setup.py sdist bdist_wheel
2022-03-07 12:57:25 +00:00
- TWINE_PASSWORD=$PYPI_PASSWORD TWINE_USERNAME=$PYPI_USERNAME python -m twine upload dist/*
2022-03-07 11:44:40 +00:00
2022-03-07 11:51:22 +00:00
check_pypi:
2022-03-07 11:44:40 +00:00
only:
- tags
tags:
- docker
2023-04-14 18:07:16 +00:00
image: python:3.8
2022-03-07 11:44:40 +00:00
stage: check_published
script:
- pip install soil==$CI_COMMIT_TAG
2022-03-07 13:35:07 +00:00
# Allow PYPI to update its index before we try to install
when: delayed
start_in: 2 minutes