-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Jazzy support for Github actions
This patch: 1. Add the Jazzy support into actions. 2. Remove the support of the following ROS2 releases: - galactic - foxy 3. Upgrade the followings: - setup-node => v4.0.2 - setup-ros => v0.7.6 - checkout => v4.1.6 Fix: #965
- Loading branch information
Showing
5 changed files
with
23 additions
and
29 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
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,23 +11,24 @@ jobs: | |
matrix: | ||
node-version: [18.X, 20.X] | ||
ros_distribution: | ||
- jazzy | ||
- iron | ||
- humble | ||
- rolling | ||
|
||
steps: | ||
- name: Setup ROS2 | ||
uses: ros-tooling/[email protected] | ||
uses: ros-tooling/[email protected].5 | ||
with: | ||
required-ros-distributions: ${{ matrix.ros_distribution }} | ||
|
||
- name: Install test-msgs on Linux | ||
run: | | ||
sudo apt install ros-${{ matrix.ros_distribution }}-test-msgs | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4.1.6 | ||
|
||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4.0.2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
|
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 |
---|---|---|
|
@@ -5,17 +5,15 @@ on: | |
push: | ||
branches: | ||
- develop | ||
- jazzy | ||
- iron-irwini | ||
- humble-hawksbill | ||
- galactic-geochelone | ||
- foxy-fitzroy | ||
pull_request: | ||
branches: | ||
- develop | ||
- jazzy | ||
- iron-irwini | ||
- humble-hawksbill | ||
- galactic-geochelone | ||
- foxy-fitzroy | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
@@ -31,12 +29,12 @@ jobs: | |
node-version: [18.X, 20.X] | ||
steps: | ||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4.0.2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Setup ROS2 | ||
uses: ros-tooling/[email protected] | ||
uses: ros-tooling/[email protected].5 | ||
with: | ||
required-ros-distributions: ${{ needs.identify-ros-distro.outputs.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 |
---|---|---|
|
@@ -12,17 +12,18 @@ jobs: | |
matrix: | ||
node-version: [18.16.0, 20.X] | ||
ros_distribution: | ||
- jazzy | ||
- iron | ||
- humble | ||
- rolling | ||
steps: | ||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4.0.2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Setup ROS2 | ||
uses: ros-tooling/[email protected] | ||
uses: ros-tooling/[email protected].5 | ||
with: | ||
required-ros-distributions: ${{ matrix.ros_distribution }} | ||
|
||
|
@@ -36,7 +37,7 @@ jobs: | |
- name: Prebuild - Setup VS Dev Environment | ||
uses: seanmiddleditch/gha-setup-vsdevenv@v4 | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4.1.6 | ||
|
||
- name: Build rclnodejs | ||
shell: cmd | ||
|
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 |
---|---|---|
|
@@ -5,17 +5,15 @@ on: | |
push: | ||
branches: | ||
- develop | ||
- jazzy | ||
- iron-irwini | ||
- humble-hawksbill | ||
- galactic-geochelone | ||
- foxy-fitzroy | ||
pull_request: | ||
branches: | ||
- develop | ||
- jazzy | ||
- iron-irwini | ||
- humble-hawksbill | ||
- galactic-geochelone | ||
- foxy-fitzroy | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
@@ -33,12 +31,12 @@ jobs: | |
node-version: [18.16.0, 20.X] | ||
steps: | ||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4.0.2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Setup ROS2 | ||
uses: ros-tooling/[email protected] | ||
uses: ros-tooling/[email protected].5 | ||
with: | ||
required-ros-distributions: ${{ needs.identify-ros-distro.outputs.distro }} | ||
|
||
|
@@ -52,7 +50,7 @@ jobs: | |
- name: Prebuild - Setup VS Dev Environment | ||
uses: seanmiddleditch/gha-setup-vsdevenv@v4 | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4.1.6 | ||
|
||
- name: Build rclnodejs | ||
shell: cmd | ||
|