-
Notifications
You must be signed in to change notification settings - Fork 11
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
1 parent
cadb5f7
commit c3c78db
Showing
2 changed files
with
50 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Foxy Binary Build | ||
|
||
on: | ||
push: | ||
branches: [ develop ] | ||
pull_request: | ||
branches: [ develop ] | ||
|
||
jobs: | ||
foxy_binary: | ||
name: Foxy binary job | ||
runs-on: ubuntu-20.04 | ||
container: | ||
image: osrf/ros:foxy-desktop | ||
strategy: | ||
fail-fast: false | ||
env: | ||
ROS_DISTRO: foxy | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update && sudo apt-get install -y \ | ||
libeigen3-dev \ | ||
ros-foxy-xacro \ | ||
ros-foxy-tinyxml2-vendor \ | ||
ros-foxy-ros2-control \ | ||
ros-foxy-realtime-tools \ | ||
ros-foxy-control-toolbox \ | ||
ros-foxy-moveit \ | ||
ros-foxy-ros2-controllers \ | ||
ros-foxy-test-msgs \ | ||
ros-foxy-joint-state-publisher \ | ||
ros-foxy-joint-state-publisher-gui \ | ||
ros-foxy-robot-state-publisher | ||
- name: Build and run tests | ||
id: action-ros-ci | ||
uses: ros-tooling/action-ros-ci@v0.2 | ||
with: | ||
target-ros2-distro: ${{ env.ROS_DISTRO }} | ||
package-name: | | ||
flexiv_bringup | ||
flexiv_controllers | ||
flexiv_description | ||
flexiv_hardware | ||
flexiv_moveit_config | ||
flexiv_msgs | ||
flexiv_test_nodes | ||
skip-tests: true |
File renamed without changes.