Skip to content

Commit e6c1e31

Browse files
chore: sync files (#1308)
Signed-off-by: GitHub <noreply@github.com> Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
1 parent 53cb78c commit e6c1e31

5 files changed

+25
-13
lines changed

.github/workflows/build-and-test-differential-self-hosted.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,22 @@ jobs:
1818
needs: prevent-no-label-execution
1919
if: ${{ needs.prevent-no-label-execution.outputs.run == 'true' }}
2020
runs-on: [self-hosted, linux, ARM64]
21-
container: ${{ matrix.container }}
21+
container: ${{ matrix.container }}${{ matrix.container-suffix }}
2222
strategy:
2323
fail-fast: false
2424
matrix:
2525
rosdistro:
2626
- galactic
2727
- humble
28+
container-suffix:
29+
- ""
30+
- -cuda
2831
include:
2932
- rosdistro: galactic
30-
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest-cuda
33+
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest
3134
build-depends-repos: build_depends.repos
3235
- rosdistro: humble
33-
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest-cuda
36+
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest
3437
build-depends-repos: build_depends.humble.repos
3538
steps:
3639
- name: Check out repository

.github/workflows/build-and-test-differential.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,22 @@ on:
66
jobs:
77
build-and-test-differential:
88
runs-on: ubuntu-latest
9-
container: ${{ matrix.container }}
9+
container: ${{ matrix.container }}${{ matrix.container-suffix }}
1010
strategy:
1111
fail-fast: false
1212
matrix:
1313
rosdistro:
1414
- galactic
1515
- humble
16+
container-suffix:
17+
- ""
18+
- -cuda
1619
include:
1720
- rosdistro: galactic
18-
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest-cuda
21+
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest
1922
build-depends-repos: build_depends.repos
2023
- rosdistro: humble
21-
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest-cuda
24+
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest
2225
build-depends-repos: build_depends.humble.repos
2326
steps:
2427
- name: Cancel previous runs

.github/workflows/build-and-test-self-hosted.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,22 @@ on:
88
jobs:
99
build-and-test-self-hosted:
1010
runs-on: [self-hosted, linux, ARM64]
11-
container: ${{ matrix.container }}
11+
container: ${{ matrix.container }}${{ matrix.container-suffix }}
1212
strategy:
1313
fail-fast: false
1414
matrix:
1515
rosdistro:
1616
- galactic
1717
- humble
18+
container-suffix:
19+
- ""
20+
- -cuda
1821
include:
1922
- rosdistro: galactic
20-
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest-cuda
23+
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest
2124
build-depends-repos: build_depends.repos
2225
- rosdistro: humble
23-
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest-cuda
26+
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest
2427
build-depends-repos: build_depends.humble.repos
2528
steps:
2629
- name: Check out repository

.github/workflows/build-and-test.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,22 @@ jobs:
1010
build-and-test:
1111
if: ${{ github.event_name != 'push' || github.ref_name == github.event.repository.default_branch }}
1212
runs-on: ubuntu-latest
13-
container: ${{ matrix.container }}
13+
container: ${{ matrix.container }}${{ matrix.container-suffix }}
1414
strategy:
1515
fail-fast: false
1616
matrix:
1717
rosdistro:
1818
- galactic
1919
- humble
20+
container-suffix:
21+
- ""
22+
- -cuda
2023
include:
2124
- rosdistro: galactic
22-
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest-cuda
25+
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest
2326
build-depends-repos: build_depends.repos
2427
- rosdistro: humble
25-
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest-cuda
28+
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest
2629
build-depends-repos: build_depends.humble.repos
2730
steps:
2831
- name: Check out repository

.github/workflows/check-build-depends.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
check-build-depends:
1010
runs-on: ubuntu-latest
11-
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest-cuda
11+
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest
1212
steps:
1313
- name: Cancel previous runs
1414
uses: styfle/cancel-workflow-action@0.10.0

0 commit comments

Comments
 (0)