-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
- Loading branch information
Showing
1 changed file
with
32 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,32 @@ | ||
name: Build and test | ||
on: | ||
# Run this action whenever a pull request is made | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
# Note that we pass each job a different name to distinguish each linter job | ||
image_transport_tutorials_build_rolling: | ||
name: image_transport_tutorials_build_rolling | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: rolling | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
package-name: image_transport_tutorials | ||
target-ros2-distro: rolling | ||
image_transport_tutorials_build_iron: | ||
name: image_transport_tutorials_build_iron | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: iron | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
package-name: image_transport_tutorials | ||
target-ros2-distro: iron |