Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
templates
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Prada Sarasola, Miguel
templates
Commits
e83f3a45
Commit
e83f3a45
authored
Dec 05, 2018
by
Prada Sarasola, Miguel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add template for repositories containing no .rosinstall
parent
160f0ddf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
78 additions
and
0 deletions
+78
-0
.gitlab-industrial-ci-kinetic-no-rosinstall.yml
.gitlab-industrial-ci-kinetic-no-rosinstall.yml
+78
-0
No files found.
.gitlab-industrial-ci-kinetic-no-rosinstall.yml
0 → 100644
View file @
e83f3a45
image
:
docker:git
variables
:
TMPDIR
:
"
${CI_PROJECT_DIR}.tmp"
services
:
-
docker:dind
stages
:
-
precheck
-
build
-
postcheck
before_script
:
-
apk add --update bash coreutils tar wget python
industrial_ci_kinetic
:
stage
:
build
before_script
:
-
apk add --update bash coreutils tar
-
git clone https://github.com/ros-industrial/industrial_ci.git .ci_config
script
:
.ci_config/gitlab.sh
variables
:
ROS_DISTRO
:
kinetic
ROS_PARALLEL_JOBS
:
"
-j2"
# keep this for now, since there seems to be memory limit issues in the ci VM
when
:
always
##########################################################
## Simple check for basic Python syntax errors; this is much less thorough than
## other options like pylint, but much faster and less strict
##########################################################
python_syntax
:
stage
:
precheck
script
:
python -m compileall -q .
when
:
always
##########################################################
## Check for errors in bash/sh scripts
## Uses https://github.com/cytopia/awesome-ci
##########################################################
bash_syntax
:
stage
:
postcheck
script
:
-
RET=0
-
docker run -v ${PWD}:/ac cytopia/awesome-ci syntax-sh --path=/ac --extension=sh --ignore=.ci_config || RET=1
-
docker run -v ${PWD}:/ac cytopia/awesome-ci syntax-bash --path=/ac --extension=bash --ignore=.ci_config || RET=1
-
exit $RET
allow_failure
:
yes
when
:
always
##########################################################
## Check for errors in markdown files
## Uses https://github.com/cytopia/awesome-ci
## Disables the line length rule with --custom="-r ..."
## See other rules that can be configured in
## https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md
##########################################################
markdown_syntax
:
stage
:
postcheck
script
:
docker run -v ${PWD}:/ac cytopia/awesome-ci syntax-markdown --path=/ac --extension=md --ignore=.ci_config --custom="-r ~MD013"
allow_failure
:
yes
when
:
always
##########################################################
## Check for various syntax issues in files; currently
## trailing white spaces
## utf8 formatting
## Uses https://github.com/cytopia/awesome-ci
##########################################################
file_syntax
:
stage
:
postcheck
script
:
-
RET=0
-
docker run -v ${PWD}:/ac cytopia/awesome-ci file-trailing-space --path=/ac --extension=py,txt,cpp,h,md,sh,bash,xml,launch --ignore=.ci_config || RET=1
-
docker run -v ${PWD}:/ac cytopia/awesome-ci file-utf8 --path=/ac --extension=py,txt,cpp,h,md,sh,bash,xml,launch --ignore=.ci_config || RET=1
-
exit $RET
allow_failure
:
yes
when
:
always
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment