-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: sync files Signed-off-by: GitHub <[email protected]> * Update sync-files.yaml Signed-off-by: GitHub <[email protected]> Co-authored-by: kenji-miyake <[email protected]> Co-authored-by: Kenji Miyake <[email protected]>
- Loading branch information
1 parent
861b2ed
commit 46d5a6f
Showing
3 changed files
with
18 additions
and
11 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 |
---|---|---|
|
@@ -21,9 +21,6 @@ jobs: | |
container: ros:humble | ||
build-depends-repos: build_depends.repos | ||
steps: | ||
- name: Cancel previous runs | ||
uses: styfle/[email protected] | ||
|
||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
with: | ||
|
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 |
---|---|---|
|
@@ -3,16 +3,26 @@ name: check-build-depends | |
on: | ||
pull_request: | ||
paths: | ||
- build_depends.repos | ||
- build_depends*.repos | ||
|
||
jobs: | ||
check-build-depends: | ||
runs-on: ubuntu-latest | ||
container: ros:galactic | ||
container: ${{ matrix.container }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
rosdistro: | ||
- galactic | ||
- humble | ||
include: | ||
- rosdistro: galactic | ||
container: ros:galactic | ||
build-depends-repos: build_depends.repos | ||
- rosdistro: humble | ||
container: ros:humble | ||
build-depends-repos: build_depends.repos | ||
steps: | ||
- name: Cancel previous runs | ||
uses: styfle/[email protected] | ||
|
||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
||
|
@@ -26,6 +36,6 @@ jobs: | |
- name: Build | ||
uses: autowarefoundation/autoware-github-actions/colcon-build@v1 | ||
with: | ||
rosdistro: galactic | ||
rosdistro: ${{ matrix.rosdistro }} | ||
target-packages: ${{ steps.get-self-packages.outputs.self-packages }} | ||
build-depends-repos: build_depends.repos | ||
build-depends-repos: ${{ matrix.build-depends-repos }} |