Skip to content

Commit c30abd3

Browse files
committed
Try to get this to work with act(Run github actions locally).
https://nektosact.com/introduction.html Run github actions locally. It doesn't work locally for me. If fails on vcs import --force --recursive src/ < package.repo Could not checkout ref 'a077eb600a3700d1053482b3582822fa1b6e48db': fatal: reference is not a tree: a077eb600a3700d1053482b3582822fa1b6e48db
1 parent 33490ee commit c30abd3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/deps.repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ repositories:
55
version: feature/mw/ros2_build
66
navigation2:
77
type: git
8-
url: https://github.com/ros-planning/navigation2/
8+
url: https://github.com/ros-planning/navigation2.git
99
version: main

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ jobs:
1818
matrix:
1919
ros_distro: [rolling]
2020
steps:
21+
- name: apt update
22+
run: sudo apt update
23+
- name: Install nodejs
24+
run: sudo apt install nodejs -y
2125
- uses: actions/checkout@v2
2226
- name: Install Cyclone DDS
2327
run: sudo apt install ros-${{ matrix.ros_distro }}-rmw-cyclonedds-cpp -y
@@ -39,6 +43,8 @@ jobs:
3943
run: sudo apt install ros-${{ matrix.ros_distro }}-behaviortree-cpp -y
4044
- name: Install diagnostic_updater
4145
run: sudo apt install ros-${{ matrix.ros_distro }}-diagnostic-updater -y
46+
- name: Install rviz_common
47+
run: sudo apt install ros-${{ matrix.ros_distro }}-rviz-common -y
4248
- name: Build and run tests
4349
id: action-ros-ci
4450
uses: ros-tooling/[email protected]

0 commit comments

Comments
 (0)