Skip to content

Commit

Permalink
Update ROS versions and remove ignition
Browse files Browse the repository at this point in the history
Signed-off-by: Jose Luis Rivero <[email protected]>
  • Loading branch information
j-rivero committed May 17, 2023
1 parent 4204aa1 commit 7526414
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions bloom/release-bloom.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,15 @@
import urllib.request
import urllib.parse

USAGE = 'release-bloom.py <package> <version> <upstream_release_repo> <ros_distro> [--ignition-version version_name] <jenkinstoken>'
USAGE = 'release-bloom.py <package> <version> <upstream_release_repo> <ros_distro> <jenkinstoken>'
JENKINS_URL = 'http://build.osrfoundation.org'
JOB_NAME_PATTERN = '%s-bloom-debbuilder'

UBUNTU_ARCHS = ['amd64']
# not releasing for precise by default
UBUNTU_DISTROS_IN_ROS = {'melodic': ['bionic'],
'noetic': ['focal']}
UBUNTU_DISTROS_IN_ROS = {'noetic': ['focal']}
UBUNTU_DISTROS_IN_ROS2 = {'foxy': ['focal'],
'rolling': ['focal']}
'humble': ['jammy'],
'rolling': ['jammy']}
DRY_RUN = False

def parse_args(argv):
Expand All @@ -35,9 +34,6 @@ def parse_args(argv):
help='Release version suffix; usually 1 (e.g., 1')
parser.add_argument('--upload-to-repo', dest='upload_to_repository', default="stable",
help='OSRF repo to upload: stable | prerelease | nightly')
parser.add_argument('--ignition-version', action='store', default=None,
help='Gazebo version to use in the binary packages')

args = parser.parse_args()
DRY_RUN = args.dry_run
return args
Expand Down

0 comments on commit 7526414

Please sign in to comment.