Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Python Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Templates
Python Project
Commits
ded8ab39
Verified
Commit
ded8ab39
authored
3 weeks ago
by
Tamas Gal
Browse files
Options
Downloads
Patches
Plain Diff
Update CI
parent
113df982
No related branches found
Branches containing commit
No related tags found
1 merge request
!5
Modernise build system
Pipeline
#63051
failed
3 weeks ago
Stage: install
Stage: install-dev
Stage: test
Stage: doc
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+14
-8
14 additions, 8 deletions
.gitlab-ci.yml
with
14 additions
and
8 deletions
.gitlab-ci.yml
+
14
−
8
View file @
ded8ab39
...
...
@@ -17,24 +17,32 @@ install-py3.9:
stage
:
install
script
:
-
make install
cache
:
key
:
"
$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
install-py3.12
:
image
:
git.km3net.de:4567/common/dockerfiles/base/python:3.12
stage
:
install
script
:
-
make install
cache
:
key
:
"
$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
install-dev-py3.9
:
image
:
docker.km3net.de/base/python:3.9
stage
:
install-dev
script
:
-
make install-dev
cache
:
key
:
"
$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
install-dev-py3.12
:
image
:
git.km3net.de:4567/common/dockerfiles/base/python:3.12
stage
:
install-dev
script
:
-
make install-dev
cache
:
key
:
"
$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
test-py3.9
:
image
:
docker.km3net.de/base/python:3.9
...
...
@@ -42,6 +50,8 @@ test-py3.9:
script
:
-
make install-dev
-
make test
cache
:
key
:
"
$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
test-py3.12
:
image
:
git.km3net.de:4567/common/dockerfiles/base/python:3.12
...
...
@@ -49,17 +59,13 @@ test-py3.12:
script
:
-
make install-dev
-
make test
cache
:
key
:
"
$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
doc-py3.9
:
image
:
docker.km3net.de/base/python:3.9
stage
:
doc
script
:
-
make install-dev
-
cd doc && make html
doc-py3.12
:
doc
:
image
:
git.km3net.de:4567/common/dockerfiles/base/python:3.12
stage
:
doc
script
:
-
make install-dev
-
cd doc && make html
cache
:
{}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment