Skip to content

Commit e8ee044

Browse files
authored
ci: remove Galactic CI workflows (#2408)
* ci: remove Galactic CI workflows Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * fix repos name Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
1 parent 96652f9 commit e8ee044

8 files changed

+7
-76
lines changed

.github/sync-files.yaml

-6
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
- source: .github/workflows/build-and-test.yaml
3535
pre-commands: |
3636
sd "container: ros:(\w+)" "container: ghcr.io/autowarefoundation/autoware-universe:\$1-latest" {source}
37-
sd -f ms '(rosdistro: humble.*?build-depends-repos): build_depends.repos' '$1: build_depends.humble.repos' {source}
3837
3938
sd -s 'container: ${{ matrix.container }}' 'container: ${{ matrix.container }}${{ matrix.container-suffix }}' {source}
4039
sd -- \
@@ -46,7 +45,6 @@
4645
- source: .github/workflows/build-and-test-differential.yaml
4746
pre-commands: |
4847
sd "container: ros:(\w+)" "container: ghcr.io/autowarefoundation/autoware-universe:\$1-latest" {source}
49-
sd -f ms '(rosdistro: humble.*?build-depends-repos): build_depends.repos' '$1: build_depends.humble.repos' {source}
5048
5149
sd -s 'container: ${{ matrix.container }}' 'container: ${{ matrix.container }}${{ matrix.container-suffix }}' {source}
5250
sd -- \
@@ -60,7 +58,6 @@
6058
- source: .github/workflows/build-and-test-differential-self-hosted.yaml
6159
pre-commands: |
6260
sd "container: ros:(\w+)" "container: ghcr.io/autowarefoundation/autoware-universe:\$1-latest" {source}
63-
sd -f ms '(rosdistro: humble.*?build-depends-repos): build_depends.repos' '$1: build_depends.humble.repos' {source}
6461
6562
sd -s 'container: ${{ matrix.container }}' 'container: ${{ matrix.container }}${{ matrix.container-suffix }}' {source}
6663
sd -- \
@@ -71,7 +68,6 @@
7168
- source: .github/workflows/build-and-test-self-hosted.yaml
7269
pre-commands: |
7370
sd "container: ros:(\w+)" "container: ghcr.io/autowarefoundation/autoware-universe:\$1-latest" {source}
74-
sd -f ms '(rosdistro: humble.*?build-depends-repos): build_depends.repos' '$1: build_depends.humble.repos' {source}
7571
7672
sd -s 'container: ${{ matrix.container }}' 'container: ${{ matrix.container }}${{ matrix.container-suffix }}' {source}
7773
sd -- \
@@ -81,8 +77,6 @@
8177
- -cuda
8278
include:" {source}
8379
- source: .github/workflows/check-build-depends.yaml
84-
pre-commands: |
85-
sd -f ms '(rosdistro: humble.*?build-depends-repos): build_depends.repos' '$1: build_depends.humble.repos' {source}
8680
- source: .github/workflows/clang-tidy-pr-comments.yaml
8781
- source: .github/workflows/clang-tidy-pr-comments-manually.yaml
8882
- source: .github/workflows/update-codeowners-from-packages.yaml

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

+1-5
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,13 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
rosdistro:
26-
- galactic
2726
- humble
2827
container-suffix:
2928
- -cuda
3029
include:
31-
- rosdistro: galactic
32-
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest
33-
build-depends-repos: build_depends.repos
3430
- rosdistro: humble
3531
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest
36-
build-depends-repos: build_depends.humble.repos
32+
build-depends-repos: build_depends.repos
3733
steps:
3834
- name: Check out repository
3935
uses: actions/checkout@v3

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

+2-6
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,13 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
rosdistro:
14-
- galactic
1514
- humble
1615
container-suffix:
1716
- -cuda
1817
include:
19-
- rosdistro: galactic
20-
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest
21-
build-depends-repos: build_depends.repos
2218
- rosdistro: humble
2319
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest
24-
build-depends-repos: build_depends.humble.repos
20+
build-depends-repos: build_depends.repos
2521
steps:
2622
- name: Check out repository
2723
uses: actions/checkout@v3
@@ -94,4 +90,4 @@ jobs:
9490
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
9591
target-files: ${{ steps.get-modified-files.outputs.all_changed_files }}
9692
clang-tidy-config-url: https://raw.githubusercontent.com/autowarefoundation/autoware/main/.clang-tidy
97-
build-depends-repos: build_depends.humble.repos
93+
build-depends-repos: build_depends.repos

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

+1-5
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,14 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
rosdistro:
16-
- galactic
1716
- humble
1817
container-suffix:
1918
- ""
2019
- -cuda
2120
include:
22-
- rosdistro: galactic
23-
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest
24-
build-depends-repos: build_depends.repos
2521
- rosdistro: humble
2622
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest
27-
build-depends-repos: build_depends.humble.repos
23+
build-depends-repos: build_depends.repos
2824
steps:
2925
- name: Check out repository
3026
uses: actions/checkout@v3

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

+1-5
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,14 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
rosdistro:
18-
- galactic
1918
- humble
2019
container-suffix:
2120
- ""
2221
- -cuda
2322
include:
24-
- rosdistro: galactic
25-
container: ghcr.io/autowarefoundation/autoware-universe:galactic-latest
26-
build-depends-repos: build_depends.repos
2723
- rosdistro: humble
2824
container: ghcr.io/autowarefoundation/autoware-universe:humble-latest
29-
build-depends-repos: build_depends.humble.repos
25+
build-depends-repos: build_depends.repos
3026
steps:
3127
- name: Check out repository
3228
uses: actions/checkout@v3

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

+1-5
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,11 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
rosdistro:
16-
- galactic
1716
- humble
1817
include:
19-
- rosdistro: galactic
20-
container: ros:galactic
21-
build-depends-repos: build_depends.repos
2218
- rosdistro: humble
2319
container: ros:humble
24-
build-depends-repos: build_depends.humble.repos
20+
build-depends-repos: build_depends.repos
2521
steps:
2622
- name: Check out repository
2723
uses: actions/checkout@v3

build_depends.humble.repos

-43
This file was deleted.

build_depends.repos

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ repositories:
2828
universe/external/grid_map:
2929
type: git
3030
url: https://github.com/ANYbotics/grid_map.git
31-
version: ba2f9cb6e62f7ee9c5bac7401391a211e442e459
31+
version: 74333f037cfce321248dfa7b954a815d4f67d79d
3232
universe/external/mussp:
3333
type: git
3434
url: https://github.com/tier4/muSSP.git

0 commit comments

Comments
 (0)