Skip to content

Commit

Permalink
added continue flag to all apt-get install commands in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Arief-AK committed May 18, 2024
1 parent bab4aa9 commit d03881f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:
- name: Install ROS building dependencies
run: |
sudo apt install python3-rosdep python3-rosinstall python3-rosinstall-generator python3-wstool build-essential
sudo apt install python3-catkin-tools python3-rosinstall-generator python3-osrf-pycommon
sudo apt-get install ros-$ROS_DISTRO-rqt ros-$ROS_DISTRO-rqt-common-plugins
pip install scipy
sudo apt install python3-rosdep python3-rosinstall python3-rosinstall-generator python3-wstool build-essential -y
sudo apt install python3-catkin-tools python3-rosinstall-generator python3-osrf-pycommon -y
sudo apt-get install ros-$ROS_DISTRO-rqt ros-$ROS_DISTRO-rqt-common-plugins -y
pip install scipy -y
- name: Create new workspace
run: |
Expand Down

0 comments on commit d03881f

Please sign in to comment.