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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tecnalia_robotics-public
templates
Merge requests
!60
Resolve "Allow a way of testing melodic pipeline"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Allow a way of testing melodic pipeline"
33-allow-a-way-of-testing-melodic-pipeline
into
master
Overview
10
Commits
2
Pipelines
12
Changes
2
2 open threads
Hide all comments
Merged
Resolve "Allow a way of testing melodic pipeline"
Jon Azpiazu
requested to merge
33-allow-a-way-of-testing-melodic-pipeline
into
master
May 7, 2021
Overview
10
Commits
2
Pipelines
12
Changes
2
2 open threads
Hide all comments
Closes
#33 (closed)
Edited
May 10, 2021
by
Jon Azpiazu
0
0
Merge request reports
Compare
master
version 10
946b6969
May 10, 2021
version 9
db544c84
May 10, 2021
version 8
493013ff
May 10, 2021
version 7
2b938dad
May 10, 2021
version 6
16198fe5
May 10, 2021
version 5
8f968aa8
May 7, 2021
version 4
49ead59d
May 7, 2021
version 3
3ffff2ec
May 7, 2021
version 2
f3acdeea
May 7, 2021
version 1
383b123e
May 7, 2021
master (base)
and
latest version
latest version
01f2ad7e
2 commits,
May 10, 2021
version 10
946b6969
8 commits,
May 10, 2021
version 9
db544c84
7 commits,
May 10, 2021
version 8
493013ff
6 commits,
May 10, 2021
version 7
2b938dad
5 commits,
May 10, 2021
version 6
16198fe5
4 commits,
May 10, 2021
version 5
8f968aa8
3 commits,
May 7, 2021
version 4
49ead59d
3 commits,
May 7, 2021
version 3
3ffff2ec
3 commits,
May 7, 2021
version 2
f3acdeea
2 commits,
May 7, 2021
version 1
383b123e
1 commit,
May 7, 2021
2 files
+
24
−
19
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
.gitlab-industrial-ci-kinetic-no-rosinstall.yml
+
12
−
9
View file @ 01f2ad7e
Edit in single-file editor
Open in Web IDE
Show full file
@@ -38,19 +38,22 @@ industrial_ci_kinetic:
variables
:
ROS_DISTRO
:
kinetic
DOCKER_IMAGE
:
"
${ARTIFACT_DOCKER_URL}/flexbotics-base-devel:${ROS_DISTRO}"
except
:
-
tags
-
melodic-devel
rules
:
-
if
:
$CI_COMMIT_TAG
when
:
never
-
if
:
$CI_COMMIT_REF_NAME =~ /^melodic-.*/
when
:
never
-
when
:
always
industrial_ci_melodic
:
extends
:
.industrial_ci
variables
:
ROS_DISTRO
:
melodic
DOCKER_IMAGE
:
"
${ARTIFACT_DOCKER_URL}/flexbotics-base-devel:${ROS_DISTRO}"
only
:
-
melodic-devel
except
:
-
tags
rules
:
-
if
:
$CI_COMMIT_TAG
when
:
never
-
if
:
$CI_COMMIT_REF_NAME =~ /^melodic-.*/
industrial_ci_kinetic_deploy
:
extends
:
.industrial_ci
@@ -73,8 +76,8 @@ industrial_ci_kinetic_deploy:
-
docker build --build-arg APPLICATION_IMAGE=${ARTIFACT_DOCKER_URL}/${CI_PROJECT_NAME}:${CI_COMMIT_REF_NAME} -t ${ARTIFACT_DOCKER_URL}/${CI_PROJECT_NAME}:${CI_COMMIT_REF_NAME}-dev .
-
docker push ${ARTIFACT_DOCKER_URL}/${CI_PROJECT_NAME}:${CI_COMMIT_REF_NAME}-dev
-
cd ..
only
:
-
tags
rules
:
-
if
:
$CI_COMMIT_TAG
clang_format
:
stage
:
postcheck
Loading