-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: attempt to fix git submodule checkout
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,11 +49,6 @@ jobs: | |
image: ${{ matrix.docker_image }} | ||
|
||
steps: | ||
- name: setup ROS environment | ||
uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: ${{ matrix.ros_distribution }} | ||
|
||
- name: Checkout | ||
uses: actions/checkout@master | ||
|
||
|
@@ -62,6 +57,11 @@ jobs: | |
git submodule sync | ||
git submodule update --init --recursive | ||
- name: setup ROS environment | ||
uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: ${{ matrix.ros_distribution }} | ||
|
||
- name: Install rosdep dependencies | ||
run: | | ||
# See bug/issue: https://github.com/orgs/community/discussions/47863 | ||
|