Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
intranet
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
cubicweb
cubes
intranet
Merge requests
!41
[Docker/package] use prometheus cube and activate some metrics
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[Docker/package] use prometheus cube and activate some metrics
topic/default/cubicweb-prometheus
into
branch/default
Overview
0
Commits
2
Pipelines
12
Changes
3
Merged
Arthur Lutz
requested to merge
topic/default/cubicweb-prometheus
into
branch/default
3 years ago
Overview
0
Commits
2
Pipelines
12
Changes
1
Expand
0
0
Merge request reports
Compare
version 2
version 8
ad5e2e30
3 years ago
version 7
fe235001
3 years ago
version 6
ea76f8ab
3 years ago
version 5
8876f045
3 years ago
version 4
edfc7a9d
3 years ago
version 3
7469b5c9
3 years ago
version 2
7f20081f
3 years ago
version 1
b5a7f08a
3 years ago
branch/default (base)
and
version 5
latest version
19258529
2 commits,
3 years ago
version 8
ad5e2e30
2 commits,
3 years ago
version 7
fe235001
2 commits,
3 years ago
version 6
ea76f8ab
2 commits,
3 years ago
version 5
8876f045
2 commits,
3 years ago
version 4
edfc7a9d
2 commits,
3 years ago
version 3
7469b5c9
2 commits,
3 years ago
version 2
7f20081f
1 commit,
3 years ago
version 1
b5a7f08a
1 commit,
3 years ago
Show latest version
1 file
+
11
−
54
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
10
−
54
Options
image
:
python:3.7
default
:
image
:
python:3.7
include
:
-
project
:
"
open-source/gitlab-ci-templates"
ref
:
"
branch/default"
file
:
# the stages are:
-
"
templates/no-duplicated-ci-pipelines.yml"
# no stage
-
"
templates/lint/black.yml"
-
"
templates/lint/flake8.yml"
-
"
templates/lint/check-manifest.yml"
-
"
templates/lint/yamllint.yml"
-
"
templates/lint/mypy.yml"
-
"
templates/tests/py3.yml"
-
"
templates/build-docker-image.yml"
# test and publish
-
"
templates/create-release-on-heptapod.yml"
# release
-
"
templates/upload-to-pypi.yml"
# release
stages
:
-
test
-
lint
-
tests
-
release
-
publish
-
deploy
.test
:
stage
:
test
before_script
:
-
pip install tox
check-manifest
:
extends
:
.test
script
:
tox -e check-manifest
flake8
:
extends
:
.test
rules
:
-
changes
:
-
"
**/*.py"
script
:
tox -e flake8
py3
:
extends
:
.test
script
:
tox -e py3
rules
:
-
changes
:
-
"
**/*.py"
artifacts
:
paths
:
-
py3-deprecated-warnings.json
black
:
stage
:
test
rules
:
-
changes
:
-
"
**/*.py"
script
:
tox -e black
mypy
:
stage
:
test
rules
:
-
changes
:
-
"
**/*.py"
script
:
tox -e mypy
yamllint
:
extends
:
.test
rules
:
-
changes
:
-
"
**/*.yaml"
-
"
*.yaml"
-
"
**/*.yml"
-
"
*.yml"
script
:
-
tox -e yamllint
deploy
:
image
:
name
:
registry.logilab.fr/logilab/infra/dockerfiles/kubectl
Loading