-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
8 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 |
---|---|---|
|
@@ -30,18 +30,22 @@ jobs: | |
run: | | ||
apt-get update -q | ||
apt-get install -qy python3-pip python-is-python3 ros-dev-tools | ||
source /opt/ros/$ROS_DISTRO/setup.bash | ||
rosdep init | ||
rosdep update | ||
rosdep install --from-paths ros2_easy_test | ||
colcon build --symlink-install | ||
# There seems to be no other way to install the PiPI dependencies: | ||
export PIP_BREAK_SYSTEM_PACKAGES=1 | ||
pip install -e './ros2_easy_test[dev]' | ||
- run: echo "ROS_DISTRO=$ROS_DISTRO" >> "$GITHUB_OUTPUT" | ||
id: save_envs | ||
- | ||
uses: ros-tooling/[email protected] | ||
with: | ||
target-ros2-distro: ${{ steps.save_envs.outputs.ROS_DISTRO }} | ||
package-name: ros2_easy_test | ||
skip-tests: true | ||
# - run: echo "ROS_DISTRO=$ROS_DISTRO" >> "$GITHUB_OUTPUT" | ||
# id: save_envs | ||
# - | ||
# uses: ros-tooling/[email protected] | ||
# with: | ||
# target-ros2-distro: ${{ steps.save_envs.outputs.ROS_DISTRO }} | ||
# package-name: ros2_easy_test | ||
# skip-tests: true | ||
- | ||
name: Format (with ruff) | ||
run: | | ||
|