matrix-alertbot/.gitlab-ci.yml

67 lines
1.2 KiB
YAML
Raw Normal View History

2022-08-08 17:29:03 +02:00
workflow:
rules:
- if: $CI_MERGE_REQUEST_IID
- if: $CI_COMMIT_TAG
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
2022-08-08 17:38:53 +02:00
VIRTUAL_ENV: "$CI_PROJECT_DIR/.venv"
2022-08-08 17:29:03 +02:00
FF_USE_FASTZIP: "true"
stages:
- install
- quality
- test
.pip cache template:
cache:
key:
files:
- setup.py
2022-08-08 17:38:53 +02:00
- requirements.txt
2022-08-08 17:29:03 +02:00
paths:
- .cache/pip
2022-08-08 17:38:53 +02:00
- ${VIRTUAL_ENV}
before_script:
2022-08-08 17:50:58 +02:00
- export PATH="${VIRTUAL_ENV}/bin:$PATH"
2022-08-08 17:29:03 +02:00
requirements:
extends: .pip cache template
image: python:3.10-alpine
stage: install
script:
2022-08-08 17:38:53 +02:00
- python3 -m venv "${VIRTUAL_ENV}"
2022-08-08 17:30:38 +02:00
- pip install -r requirements.txt
2022-08-08 17:29:03 +02:00
cache:
policy: pull-push
interruptible: true
linting:
extends: .pip cache template
image: python:3.10-alpine
stage: quality
script:
- flake8 .
cache:
policy: pull
interruptible: true
tests:
extends: .pip cache template
image: python:3.10-alpine
stage: test
script:
- coverage run --source matrix_alertbot -m pytest --junitxml=report.xml
- coverage xml -o coverage.xml
cache:
policy: pull
artifacts:
reports:
coverage_report:
coverage_format: cobertura
path: coverage.xml
junit: report.xml
interruptible: true