Skip to content
Snippets Groups Projects
Commit 71f8daa7 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Add CI

parent 029d0185
No related branches found
No related tags found
No related merge requests found
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
# Pip's cache doesn't store the python packages
# https://pip.pypa.io/en/stable/reference/pip_install/#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/
key: "$CI_COMMIT_REF_SLUG"
stages:
- build
.virtualenv_template: &virtualenv_definition |
python -V
pip install virtualenv
virtualenv venv
source venv/bin/activate
pip install -U pip setuptools
pip install .
.junit_template: &junit_definition
artifacts:
reports:
junit: "reports/junit*.xml"
build-jpp-12.1.0:
image: docker.km3net.de/jpp/12.1.0
stage: build
script:
- *virtualenv_definition
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