Skip to content

Commit

Permalink
Merge pull request #658 from osrf/M1chaelM/fix_wamv_compliance
Browse files Browse the repository at this point in the history
`generate_wamv.py` should not produce a compliance error on an empty WAMV
  • Loading branch information
M1chaelM committed May 25, 2023
2 parents 158d826 + a147788 commit 75e307e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,22 @@ name: Ubuntu CI
on: [pull_request]

jobs:
test-fortress-galactic:
test-humble-garden:

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
container:
image: npslearninglab/watery_robots:humble_current
options: --user root
steps:
- run: sudo chown -R `whoami`:`whoami` .
- name: Checkout vrx
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3
with:
ref: main
path: vrx

- name: Checkout Gazebosim
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3
with:
repository: gazebosim/ros_gz
ref: humble
Expand Down
2 changes: 1 addition & 1 deletion vrx_urdf/vrx_gazebo/src/vrx_gazebo/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def create_xacro_file(xacro_target,
if requested_macros is None:
xacro_file.write(boiler_plate_bot)
xacro_file.close()
return
return True

# Object must be available
for key, objects in requested_macros.items():
Expand Down

0 comments on commit 75e307e

Please sign in to comment.