-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update github workflow to use setup-ros 0.7. (#265)
* Update github workflow to use setup-ros 0.7. * Also add in humble Github workflow. Signed-off-by: Chris Lalancette <[email protected]>
- Loading branch information
1 parent
be48a0d
commit e3c3388
Showing
3 changed files
with
39 additions
and
3 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,36 @@ | ||
name: Basic Build Workflow | ||
|
||
on: | ||
- pull_request | ||
- push | ||
|
||
jobs: | ||
build-humble: | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
container: | ||
image: rostooling/setup-ros-docker:ubuntu-jammy-ros-humble-desktop-latest | ||
steps: | ||
- name: Build Environment | ||
uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: humble | ||
- name: Run Tests | ||
uses: ros-tooling/[email protected] | ||
id: humble_action_ros_ci_step | ||
with: | ||
package-name: | | ||
joy | ||
joy_linux | ||
sdl2_vendor | ||
spacenav | ||
wiimote | ||
wiimote_msgs | ||
target-ros2-distro: humble | ||
- name: Upload logs | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: colcon-logs | ||
path: ${{ steps.humble_action_ros_ci_step.outputs.ros-workspace-directory-name }}/log | ||
if: always() |
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
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