opnsense-prom-exporter/.gitlab-ci.yml
2023-09-01 15:57:07 +02:00

81 lines
1.8 KiB
YAML

# This is based on the following template located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Python.gitlab-ci.yml
# and other experimentations
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/python/tags/
image: python:latest
# Change pip's cache directory to be inside the project directory since we can
# only cache local items.
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
# Pip's cache doesn't store the python packages
# https://pip.pypa.io/en/stable/topics/caching/
#
# If you want to also cache the installed packages, you have to install
# them in a virtualenv and cache it as well.
cache:
paths:
- .cache/pip
- venv/
before_script:
- python --version ; pip --version # For debugging
- pip install virtualenv
- virtualenv venv
- source venv/bin/activate
- pip install -r requirements.dev.txt
stages:
- lint
- build
- test
- release
lint:
stage: lint
script:
- pre-commit install --install-hooks
- pre-commit run --all-files --show-diff-on-failure
needs: []
build:
stage: build
script:
- rm -rf dist/
- python setup.py sdist bdist_wheel
- twine check dist/*
- pip install dist/*.whl
- opnsense-exporter --help
- pip install -e .
needs: []
artifacts:
paths:
- dist/
test:
stage: test
coverage: '/\d+\%\s*$/'
script:
- pip install --editable ".[test]"
- pytest
artifacts:
reports:
coverage_report:
coverage_format: cobertura
path: ./coverage.xml
junit: ./junit.xml
paths:
- ./htmlcov/
needs: [build]
pypi-release:
stage: release
script:
- twine upload --verbose dist/*
needs: ["build", "lint", "test"]
only:
- tags