Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion create_jenkins_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def main(argv=None):
'turtlebot_demo': False,
'build_timeout_mins': 0,
'ubuntu_distro': 'focal',
'ros_distro': 'foxy',
'ros_distro': 'rolling',
}

jenkins = connect(args.jenkins_url)
Expand Down
4 changes: 4 additions & 0 deletions job_templates/ci_job.xml.em
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,10 @@ setlocal enableDelayedExpansion
rmdir /S /Q ws workspace "work space"

echo "# BEGIN SECTION: Build DockerFile"
@# Rolling uses the Foxy Dockerfile.
if "!CI_ROS_DISTRO!" == "rolling" (
set "CI_ROS_DISTRO=foxy"
)
@# Eloquent uses the Dashing Dockerfile.
if "!CI_ROS_DISTRO!" == "eloquent" (
set "CI_ROS_DISTRO=dashing"
Expand Down
4 changes: 4 additions & 0 deletions job_templates/packaging_job.xml.em
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,10 @@ setlocal enableDelayedExpansion
rmdir /S /Q ws workspace

echo "# BEGIN SECTION: Build DockerFile"
@# Rolling uses the Foxy Dockerfile.
if "!CI_ROS_DISTRO!" == "rolling" (
set "CI_ROS_DISTRO=foxy"
)
@# Eloquent uses the Dashing Dockerfile.
if "!CI_ROS_DISTRO!" == "eloquent" (
set "CI_ROS_DISTRO=dashing"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ choices.remove(ubuntu_distro)
<a class="string-array">
<string>@ros_distro</string>
@{
choices = ['dashing', 'eloquent', 'foxy']
choices = ['dashing', 'eloquent', 'foxy', 'rolling]
choices.remove(ros_distro)
}@
@[for choice in choices]@
Expand Down