Skip to content

Commit

Permalink
Merge branch 'master' into jrivero/yaml_debbuilders
Browse files Browse the repository at this point in the history
  • Loading branch information
j-rivero authored Jan 10, 2024
2 parents a33d65e + 7250033 commit cec53e4
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion bloom/ros_gz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ newer version of Gazebo than the one selected in REP-2000.
| ---------------|---------------------|------------|---------------|---------------------|----|-------------|
| Garden | Humble | stable | humble | https://github.com/gazebo-release/ros_ign-release | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=ros_gzgarden_bridge-install-pkg_humble-ci-jammy-amd64)](https://build.osrfoundation.org/job/ros_gzgarden_bridge-install-pkg_humble-ci-jammy-amd64/) | <details>```RELEASE_REPO_URL=https://github.com/gazebo-release/ros_ign-release ./bloom_from_special_env.bash humble garden https://raw.githubusercontent.com/osrf/osrf-rosdep/master/gz/replace_fortress_with_garden/00-replace-gz-fortress-with-garden.list```</details> |
| Garden | Iron | stable | iron | https://github.com/gazebo-release/ros_ign-release | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=ros_gzgarden_bridge-install-pkg_iron-ci-jammy-amd64)](https://build.osrfoundation.org/job/ros_gzgarden_bridge-install-pkg_iron-ci-jammy-amd64/) | <details>```RELEASE_REPO_URL=https://github.com/gazebo-release/ros_ign-release ./bloom_from_special_env.bash iron garden https://raw.githubusercontent.com/osrf/osrf-rosdep/master/gz/replace_fortress_with_garden/00-replace-gz-fortress-with-garden.list```</details> |
| Harmonic | Iron | stable | ros2 | https://github.com/gazebo-release/ros_gz-gzharmonic-release | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=ros_gzharmonic_bridge-install-pkg_iron-ci-jammy-amd64)](https://build.osrfoundation.org/job/ros_gzharmonic_bridge-install-pkg_iron-ci-jammy-amd64/) | <details>```RELEASE_REPO_URL=https://github.com/gazebo-release/ros_gz-gzharmonic-release ./bloom_from_special_env.bash iron harmonic https://raw.githubusercontent.com/osrf/osrf-rosdep```</details> |
| Harmonic | Humble | stable | humble | https://github.com/gazebo-release/ros_gz-gzharmonic-release | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=ros_gzharmonic_bridge-install-pkg_humble-ci-jammy-amd64)](https://build.osrfoundation.org/job/ros_gzharmonic_bridge-install-pkg_humble-ci-jammy-amd64/) | <details>```RELEASE_REPO_URL=https://github.com/gazebo-release/ros_gz-gzharmonic-release ./bloom_from_special_env.bash hubmle harmonic https://raw.githubusercontent.com/osrf/osrf-rosdep/master/gz/replace_fortress_with_harmonic/00-replace-gz-fortress-with-harmonic.list```</details> |
| Harmonic | Iron | stable | ros2 | https://github.com/gazebo-release/ros_gz-gzharmonic-release | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=ros_gzharmonic_bridge-install-pkg_iron-ci-jammy-amd64)](https://build.osrfoundation.org/job/ros_gzharmonic_bridge-install-pkg_iron-ci-jammy-amd64/) | <details>```RELEASE_REPO_URL=https://github.com/gazebo-release/ros_gz-gzharmonic-release ./bloom_from_special_env.bash iron harmonic https://raw.githubusercontent.com/osrf/osrf-rosdep```</details> |

### Upstream versions released using this tutorial

Expand Down
2 changes: 2 additions & 0 deletions jenkins-scripts/dsl/core.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ reprepro.with
{
stringParam('UPLOAD_TO_REPO','ubuntu-testing',
'Repository to host the new imported packages. Should match entry in reprepro.ini')
stringParam('REPREPRO_GIT_BRANCH', '',
'Branch of the repository to be used for code and REPREPRO_IMPORT_YAML_FILE (empty implies uses default)')
stringParam('REPREPRO_IMPORT_YAML_FILE','',
'Name of the reprepo import file')
booleanParam('COMMIT',false,
Expand Down
1 change: 1 addition & 0 deletions jenkins-scripts/dsl/logs/generated_jobs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -486,4 +486,5 @@ install_ci ionic sdformat15-install-pkg-jammy-amd64
install_ci ionic sdformat15-install_bottle-homebrew-amd64
unofficial_wrappers_install_pkg_ci garden ros_gzgarden_bridge-install-pkg_humble-ci-jammy-amd64
unofficial_wrappers_install_pkg_ci garden ros_gzgarden_bridge-install-pkg_iron-ci-jammy-amd64
unofficial_wrappers_install_pkg_ci harmonic ros_gzharmonic_bridge-install-pkg_humble-ci-jammy-amd64
unofficial_wrappers_install_pkg_ci harmonic ros_gzharmonic_bridge-install-pkg_iron-ci-jammy-amd64
2 changes: 1 addition & 1 deletion jenkins-scripts/dsl/ros_gz_bridge.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def gzgarden_ros_distros_ci = [

def unofficial_combinations = [
'garden' : ['humble', 'iron'],
'harmonic' : ['iron']
'harmonic' : ['humble', 'iron']
]

logging_list = [:]
Expand Down
2 changes: 1 addition & 1 deletion jenkins-scripts/lib/homebrew_bottle_creation.bash
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ for j in $(ls *.bottle.json); do
SRC_BOTTLE=$(brew ruby -e \
"puts JSON.load(IO.read(\"${j}\")).values[0]['bottle']['tags'].values[0]['local_filename']")
DEST_BOTTLE=$(brew ruby -e \
"puts URI.decode(JSON.load(IO.read(\"${j}\")).values[0]['bottle']['tags'].values[0]['filename'])")
"puts URI::DEFAULT_PARSER.unescape(JSON.load(IO.read(\"${j}\")).values[0]['bottle']['tags'].values[0]['filename'])")
mv ${SRC_BOTTLE} ${DEST_BOTTLE}
done
mv *.bottle*.tar.gz ${PKG_DIR}
Expand Down
2 changes: 2 additions & 0 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ def parse_args(argv):
args.package = args.package.replace('ign-', 'gz-')

args.package_alias = args.package
if args.package.startswith('ign-'):
args.package_alias = args.package.replace('ign-', 'ignition-')

DRY_RUN = args.dry_run
if args.upload_to_repository == 'nightly':
Expand Down

0 comments on commit cec53e4

Please sign in to comment.