fime/.gitlab-ci.yml

22 lines
348 B
YAML
Raw Normal View History

image: python:3.10
2022-09-21 21:53:45 +00:00
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
2022-09-21 21:58:23 +00:00
PIPENV_VENV_IN_PROJECT: 1
2022-09-21 21:53:45 +00:00
cache:
paths:
- .cache/pip
2022-09-21 21:58:23 +00:00
- .venv/
2022-09-21 21:53:45 +00:00
package_pip:
stage: build
script:
- python --version
- pip install pipenv build
2022-09-21 21:56:18 +00:00
- pipenv sync --dev
2022-09-21 21:53:45 +00:00
- pipenv run python -m build -w
artifacts:
paths:
- dist/*.whl