Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Prada Sarasola, Miguel
templates
Commits
7142b2e6
Commit
7142b2e6
authored
1 year ago
by
Iñigo Moreno i Caireta
Browse files
Options
Downloads
Patches
Plain Diff
Remove dind service from most jobs
parent
5f6e2f7c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ci-templates/core.yml
+0
-3
0 additions, 3 deletions
ci-templates/core.yml
ci-templates/industrial-ci-templates.yml
+3
-0
3 additions, 0 deletions
ci-templates/industrial-ci-templates.yml
ci-templates/syntax-check.yml
+6
-3
6 additions, 3 deletions
ci-templates/syntax-check.yml
with
9 additions
and
6 deletions
ci-templates/core.yml
+
0
−
3
View file @
7142b2e6
...
@@ -10,9 +10,6 @@ variables:
...
@@ -10,9 +10,6 @@ variables:
TMPDIR
:
/builds/${CI_PROJECT_NAMESPACE}
TMPDIR
:
/builds/${CI_PROJECT_NAMESPACE}
GIT_LFS_SKIP_SMUDGE
:
1
# Avoid fetching the files from LFS when doing git fetch
GIT_LFS_SKIP_SMUDGE
:
1
# Avoid fetching the files from LFS when doing git fetch
services
:
-
name
:
tecnalia-docker-dev.artifact.tecnalia.com/docker:dind
alias
:
docker
stages
:
stages
:
-
build
-
build
...
...
This diff is collapsed.
Click to expand it.
ci-templates/industrial-ci-templates.yml
+
3
−
0
View file @
7142b2e6
.industrial_ci
:
.industrial_ci
:
stage
:
build
stage
:
build
services
:
-
name
:
tecnalia-docker-dev.artifact.tecnalia.com/docker:dind
alias
:
docker
before_script
:
before_script
:
-
apk add --update bash coreutils tar
-
apk add --update bash coreutils tar
-
git clone --quiet --depth 1 https://github.com/ros-industrial/industrial_ci.git .ci_config
-
git clone --quiet --depth 1 https://github.com/ros-industrial/industrial_ci.git .ci_config
...
...
This diff is collapsed.
Click to expand it.
ci-templates/syntax-check.yml
+
6
−
3
View file @
7142b2e6
...
@@ -51,7 +51,9 @@ bash_syntax:
...
@@ -51,7 +51,9 @@ bash_syntax:
##########################################################
##########################################################
markdown_syntax
:
markdown_syntax
:
stage
:
.post
stage
:
.post
script
:
docker run -v ${PWD}:/ac tecnalia-docker-dev.artifact.tecnalia.com/cytopia/awesome-ci syntax-markdown --path=/ac --extension=md --ignore=.ci_config --custom="-r ~MD013,~MD014"
image
:
tecnalia-docker-dev.artifact.tecnalia.com/cytopia/awesome-ci
script
:
-
syntax-markdown --path=${PWD} --extension=md --ignore=.ci_config --custom="-r ~MD013,~MD014"
when
:
always
when
:
always
##########################################################
##########################################################
...
@@ -62,10 +64,11 @@ markdown_syntax:
...
@@ -62,10 +64,11 @@ markdown_syntax:
##########################################################
##########################################################
file_syntax
:
file_syntax
:
stage
:
.post
stage
:
.post
image
:
tecnalia-docker-dev.artifact.tecnalia.com/cytopia/awesome-ci
script
:
script
:
-
RET=0
-
RET=0
-
docker run -v ${PWD}:/ac tecnalia-docker-dev.artifact.tecnalia.com/cytopia/awesome-ci
file-trailing-space --path=
/ac
--extension=py,txt,cpp,h,md,sh,bash,xml,launch --ignore=.ci_config || RET=1
-
file-trailing-space --path=
${PWD}
--extension=py,txt,cpp,h,md,sh,bash,xml,launch --ignore=.ci_config || RET=1
-
docker run -v ${PWD}:/ac tecnalia-docker-dev.artifact.tecnalia.com/cytopia/awesome-ci
file-utf8 --path=
/ac
--extension=py,txt,cpp,h,md,sh,bash,xml,launch --ignore=.ci_config || RET=1
-
file-utf8 --path=
${PWD}
--extension=py,txt,cpp,h,md,sh,bash,xml,launch --ignore=.ci_config || RET=1
-
exit $RET
-
exit $RET
when
:
always
when
:
always
...
...
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