-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: rename `ros2-distro` input to be `distro` * chore: update the correct commit hash for the sub-actions
- Loading branch information
Showing
4 changed files
with
18 additions
and
18 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 |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
ros2-distro: [humble, iron] | ||
distro: [humble, iron] | ||
steps: | ||
- name: Checkout this repository | ||
uses: actions/[email protected] | ||
|
@@ -20,7 +20,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
repository: ros2/examples | ||
ref: ${{ matrix.ros2-distro }} | ||
ref: ${{ matrix.distro }} | ||
path: examples | ||
sparse-checkout: | | ||
rclcpp/topics | ||
|
@@ -29,20 +29,20 @@ jobs: | |
- name: Setup workspace | ||
uses: ./setup | ||
with: | ||
ros2-distro: ${{ matrix.ros2-distro }} | ||
distro: ${{ matrix.distro }} | ||
|
||
- name: Build workspace | ||
uses: ./build | ||
with: | ||
ros2-distro: ${{ matrix.ros2-distro }} | ||
distro: ${{ matrix.distro }} | ||
|
||
setup-build-test: | ||
name: Setup, Build, and Test | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ros2-distro: [humble, iron] | ||
distro: [humble, iron] | ||
steps: | ||
- name: Checkout this repository | ||
uses: actions/[email protected] | ||
|
@@ -51,7 +51,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
repository: ros2/examples | ||
ref: ${{ matrix.ros2-distro }} | ||
ref: ${{ matrix.distro }} | ||
path: examples | ||
sparse-checkout: | | ||
rclcpp/topics | ||
|
@@ -60,4 +60,4 @@ jobs: | |
- name: Test the action | ||
uses: ./ | ||
with: | ||
ros2-distro: ${{ matrix.ros2-distro }} | ||
distro: ${{ matrix.distro }} |
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ Here are the available input parameters for the ROS 2 Build and Test Workspace A | |
|
||
| Name | Default | Description | | ||
| --- | --- | --- | | ||
| `ros2-distro` | `iron` | Specify the version of ROS 2 to be set up using this action. You can refer to the [ROS 2 Distributions](https://docs.ros.org/en/rolling/Releases.html) for information about the available distributions to be used. | | ||
| `ros2` | `iron` | Specify the distribution of ROS 2 to be set up using this action. You can refer to the [ROS 2 Distributions](https://docs.ros.org/en/rolling/Releases.html) for information about the available distributions to be used. | | ||
|
||
### Examples | ||
|
||
|
@@ -59,7 +59,7 @@ You can specify the ROS 2 distribution to be used by providing it as an input pa | |
- name: Build and test | ||
uses: ichiro-its/[email protected] | ||
with: | ||
ros2-distro: rolling | ||
distro: rolling | ||
``` | ||
## License | ||
|
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