Skip to content

Commit

Permalink
Add option to clone middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
IsabelParedes committed Oct 9, 2023
1 parent 4b309d3 commit 84b5e6e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 8 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ inputs:
type: string
default: "package"
required: true
rmw_wasm:
description: "Clone rmw_wasm middleware"
type: boolean
default: true

runs:
using: composite
Expand Down Expand Up @@ -57,6 +61,10 @@ runs:
vcs import --input https://raw.githubusercontent.com/ros2/ros2/${{ inputs.ros_distro }}/ros2.repos ros-workspace/src
vcs import --input ${{ github.action_path }}/repos.yaml ros-workspace/src
- name: Clone rmw_wasm middleware
if: ${{ inputs.rmw_wasm }}
run: git clone https://github.com/ihuicatl/rmw_wasm.git ros-worskpace/src/rmw_wasm

- name: Remove unsupported packages
shell: bash -eux {0}
run: |
Expand Down
4 changes: 0 additions & 4 deletions repos.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
repositories:
rmw_wasm:
type: git
url: https://github.com/ihuicatl/rmw_wasm.git
version: main
dynmsg:
type: git
url: https://github.com/osrf/dynamic_message_introspection.git
Expand Down

0 comments on commit 84b5e6e

Please sign in to comment.