Skip to content

Commit

Permalink
fix 9
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Shen committed Aug 6, 2024
1 parent ecf9db2 commit 696340f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/cmake-single-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@ jobs:

- name: Build ROS Package
run: |
. /opt/ros/noetic/setup.bash
mkdir -p catkin_ws/src
cp -R . catkin_ws/src/
cd catkin_ws
catkin_make
mkdir -p catkin_ws/src
# Find and copy all items except the catkin_ws directory
find . -maxdepth 1 ! -name 'catkin_ws' -exec cp -R {} catkin_ws/src/ \;
cd catkin_ws
. /opt/ros/noetic/setup.bash
catkin_make
shell: bash


- name: Run Tests
run: |
. /opt/ros/noetic/setup.bash
Expand Down

0 comments on commit 696340f

Please sign in to comment.