-
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.
- Loading branch information
1 parent
1360bf4
commit 60270c3
Showing
2 changed files
with
57 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,11 @@ | ||
## PR Type | ||
|
||
- [ ] New Features | ||
- [ ] Improvement | ||
- [ ] Bug fix | ||
|
||
## Description | ||
|
||
## How to review this PR | ||
|
||
## Related PR |
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,46 @@ | ||
name: colcon-build-test | ||
on: | ||
# Run this action whenever a pull request is made | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
# Note that we pass each job a different name to distinguish each linter job | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
ros_distribution: | ||
- humble | ||
|
||
include: | ||
- docker_image: rostooling/setup-ros-docker:ubuntu-jammy-ros-humble-ros-base-latest | ||
ros_distribution: humble | ||
container: | ||
image: ${{ matrix.docker_image }} | ||
|
||
steps: | ||
- name: Install Dependencies Manually | ||
run: | | ||
rosdep update | ||
sudo apt-get update | ||
sudo apt-get install -y libunwind-dev | ||
rosdep install --from-path . -i -y --rosdistro ${{ matrix.ros_distribution }} | ||
- name: Check out Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup | ||
uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: humble | ||
|
||
- name: Build | ||
uses: ros-tooling/[email protected] | ||
with: | ||
package-name: navyu | ||
target-ros2-distro: humble | ||
import-token: ${{ secrets.GITHUB_TOKEN }} | ||
skip-tests: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |