Skip to content

Commit

Permalink
chore: sync files (#82)
Browse files Browse the repository at this point in the history
* 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
3 people authored Sep 1, 2022
1 parent 861b2ed commit 46d5a6f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/sync-files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
files:
- source: .github/workflows/build-and-test.yaml
- source: .github/workflows/build-and-test-differential.yaml
- source: .github/workflows/check-build-depends.yaml
- source: .github/workflows/cancel-previous-workflows.yaml
3 changes: 0 additions & 3 deletions .github/workflows/build-and-test-differential.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
24 changes: 17 additions & 7 deletions .github/workflows/check-build-depends.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 }}

0 comments on commit 46d5a6f

Please sign in to comment.