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

Update CI

parent 113df982
No related branches found
No related tags found
1 merge request!5Modernise build system
Pipeline #63051 failed
...@@ -17,24 +17,32 @@ install-py3.9: ...@@ -17,24 +17,32 @@ install-py3.9:
stage: install stage: install
script: script:
- make install - make install
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
install-py3.12: install-py3.12:
image: git.km3net.de:4567/common/dockerfiles/base/python:3.12 image: git.km3net.de:4567/common/dockerfiles/base/python:3.12
stage: install stage: install
script: script:
- make install - make install
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
install-dev-py3.9: install-dev-py3.9:
image: docker.km3net.de/base/python:3.9 image: docker.km3net.de/base/python:3.9
stage: install-dev stage: install-dev
script: script:
- make install-dev - make install-dev
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
install-dev-py3.12: install-dev-py3.12:
image: git.km3net.de:4567/common/dockerfiles/base/python:3.12 image: git.km3net.de:4567/common/dockerfiles/base/python:3.12
stage: install-dev stage: install-dev
script: script:
- make install-dev - make install-dev
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
test-py3.9: test-py3.9:
image: docker.km3net.de/base/python:3.9 image: docker.km3net.de/base/python:3.9
...@@ -42,6 +50,8 @@ test-py3.9: ...@@ -42,6 +50,8 @@ test-py3.9:
script: script:
- make install-dev - make install-dev
- make test - make test
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
test-py3.12: test-py3.12:
image: git.km3net.de:4567/common/dockerfiles/base/python:3.12 image: git.km3net.de:4567/common/dockerfiles/base/python:3.12
...@@ -49,17 +59,13 @@ test-py3.12: ...@@ -49,17 +59,13 @@ test-py3.12:
script: script:
- make install-dev - make install-dev
- make test - make test
cache:
key: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
doc-py3.9: doc:
image: docker.km3net.de/base/python:3.9
stage: doc
script:
- make install-dev
- cd doc && make html
doc-py3.12:
image: git.km3net.de:4567/common/dockerfiles/base/python:3.12 image: git.km3net.de:4567/common/dockerfiles/base/python:3.12
stage: doc stage: doc
script: script:
- make install-dev - make install-dev
- cd doc && make html - cd doc && make html
cache: {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment