Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gitlab-ci-templates
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
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
open-source
gitlab-ci-templates
Merge requests
!1
doc: explain and recommand how to use templates
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
doc: explain and recommand how to use templates
topic/default/doc
into
branch/default
Overview
1
Commits
1
Pipelines
1
Changes
1
Merged
Laurent Peuch
requested to merge
topic/default/doc
into
branch/default
3 years ago
Overview
1
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
branch/default
branch/default (base)
and
latest version
latest version
52898179
1 commit,
3 years ago
1 file
+
51
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
README.md
+
51
−
1
Options
@@ -4,7 +4,57 @@
In the
`templates/`
you can find some of our gitlab-ci templates.
You can include them in your gitlab-ci.
See
[
release-new's gitlab-ci
](
https://forge.extranet.logilab.fr/open-source/release-new/-/blob/branch/default/.gitlab-ci.yml
)
To include them use this snippet:
```
yaml
include
:
-
project
:
"
open-source/gitlab-templates"
ref
:
"
branch/default"
file
:
# the stages are:
-
"
templates/no-duplicate-pipelines.yml"
# use workflow to avoid duplicated pipelines
-
"
templates/docker-build.yml"
# build a docker image
-
"
templates/build-debian.yml"
# will build a .deb and upload it to heptapod
-
"
templates/release-on-heptapod.yml"
# this will create a release on heptapod AND uses uploaded .deb by build-debian
-
"
templates/publish-pypi.yml"
# this will release on pypi using "tox -e pypi-publish"
```
Depending on your templates you will need certains stages
**in a specific order**
:
```
yaml
stages
:
# put your testing/linting stages here before
# for build-debian.yml
-
build-debian
-
upload-deb
# for docker-build.yml
# for release-on-heptapod.yml
-
release
# for publish-pypi.yml
-
publish
```
A recommended configuration for a cube would be:
```
yaml
include
:
-
project
:
"
open-source/gitlab-templates"
ref
:
"
branch/default"
file
:
# the stages are:
-
"
templates/no-duplicate-pipelines.yml"
# use workflow to avoid duplicated pipelines
-
"
templates/build-debian.yml"
# will build a .deb and upload it to heptapod
-
"
templates/release-on-heptapod.yml"
# this will create a release on heptapod AND uses uploaded .deb by build-debian
-
"
templates/publish-pypi.yml"
# this will release on pypi using "tox -e pypi-publish"
stages
:
-
lint
-
test
-
build-debian
-
upload-deb
-
release
-
publish
```
You can also refer to
[
release-new's gitlab-ci
](
https://forge.extranet.logilab.fr/open-source/release-new/-/blob/branch/default/.gitlab-ci.yml
)
for instance, to see how it can be used.
You can also find the official documentation
[
here
](
https://docs.gitlab.com/ee/ci/yaml/includes.html
)
,
Loading