Skip to content

Commit b3c2488

Browse files
authored
refactor(build_depends): rename build_depends_humble.repos to build_depends_stable.repos (#12453)
The file contains pinned/stable dependency versions and is not distro-specific. Rename to reflect its actual purpose. Signed-off-by: Mete Fatih Cırıt <mfc@autoware.org>
1 parent 4fbfaac commit b3c2488

11 files changed

Lines changed: 17 additions & 17 deletions

.github/actions/combine-repos-action/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
- name: Combine Repos Files
2020
uses: ./.github/actions/combine-repos-action
2121
with:
22-
base_file: build_depends_humble.repos
22+
base_file: build_depends_stable.repos
2323
overlay_file: build_depends_nightly.repos
2424
output_file: build_depends.repos
2525
```
2626
2727
In this example:
2828
29-
- The action reads the `build_depends_humble.repos` file and the `build_depends_nightly.repos` file.
29+
- The action reads the `build_depends_stable.repos` file and the `build_depends_nightly.repos` file.
3030
- It merges them with overlay file taking precedence.
3131
- The resulting file is saved as `build_depends.repos` (or a custom filename if specified).
3232

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ jobs:
7171
if: ${{ github.event.pull_request.base.ref != 'humble' && github.event.pull_request.base.ref != 'jazzy' }}
7272
uses: ./.github/actions/combine-repos-action
7373
with:
74-
base_file: build_depends_humble.repos
74+
base_file: build_depends_stable.repos
7575
overlay_file: build_depends_nightly.repos
7676
output_file: build_depends.repos
7777

7878
- name: Prepare build_depends.repos file (humble/jazzy branch)
7979
if: ${{ github.event.pull_request.base.ref == 'humble' || github.event.pull_request.base.ref == 'jazzy' }}
80-
run: cp build_depends_humble.repos build_depends.repos
80+
run: cp build_depends_stable.repos build_depends.repos
8181
shell: bash
8282

8383
- name: Build

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ jobs:
102102
if: ${{ github.event.pull_request.base.ref != 'humble' && github.event.pull_request.base.ref != 'jazzy' }}
103103
uses: ./.github/actions/combine-repos-action
104104
with:
105-
base_file: build_depends_humble.repos
105+
base_file: build_depends_stable.repos
106106
overlay_file: build_depends_nightly.repos
107107
output_file: build_depends.repos
108108

109109
- name: Prepare build_depends.repos file (humble/jazzy branch)
110110
if: ${{ github.event.pull_request.base.ref == 'humble' || github.event.pull_request.base.ref == 'jazzy' }}
111-
run: cp build_depends_humble.repos build_depends.repos
111+
run: cp build_depends_stable.repos build_depends.repos
112112
shell: bash
113113

114114
- name: Build

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ jobs:
9797
if: ${{ github.event.pull_request.base.ref != 'humble' && github.event.pull_request.base.ref != 'jazzy' }}
9898
uses: ./.github/actions/combine-repos-action
9999
with:
100-
base_file: build_depends_humble.repos
100+
base_file: build_depends_stable.repos
101101
overlay_file: build_depends_nightly.repos
102102
output_file: build_depends.repos
103103

104104
- name: Prepare build_depends.repos file (humble/jazzy branch)
105105
if: ${{ github.event.pull_request.base.ref == 'humble' || github.event.pull_request.base.ref == 'jazzy' }}
106-
run: cp build_depends_humble.repos build_depends.repos
106+
run: cp build_depends_stable.repos build_depends.repos
107107
shell: bash
108108

109109
- name: Build

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
- name: Prepare build_depends.repos file
133133
uses: ./.github/actions/combine-repos-action
134134
with:
135-
base_file: build_depends_humble.repos
135+
base_file: build_depends_stable.repos
136136
overlay_file: build_depends_nightly.repos
137137
output_file: build_depends.repos
138138

@@ -218,7 +218,7 @@ jobs:
218218
- name: Prepare build_depends.repos file
219219
uses: ./.github/actions/combine-repos-action
220220
with:
221-
base_file: build_depends_humble.repos
221+
base_file: build_depends_stable.repos
222222
overlay_file: build_depends_nightly.repos
223223
output_file: build_depends.repos
224224

.github/workflows/bump-repo-versions-build-depends.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ jobs:
2727
targets: major minor patch
2828
base_branch: main
2929
new_branch_prefix: feat/update-
30-
autoware_repos_file_name: build_depends_humble.repos
30+
autoware_repos_file_name: build_depends_stable.repos
3131
verbosity: 0

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
if: ${{ github.event.pull_request.base.ref != 'humble' && github.event.pull_request.base.ref != 'jazzy' }}
3333
uses: ./.github/actions/combine-repos-action
3434
with:
35-
base_file: build_depends_humble.repos
35+
base_file: build_depends_stable.repos
3636
overlay_file: build_depends_nightly.repos
3737
output_file: build_depends.repos
3838

3939
- name: Prepare build_depends.repos file (humble/jazzy branch)
4040
if: ${{ github.event.pull_request.base.ref == 'humble' || github.event.pull_request.base.ref == 'jazzy' }}
41-
run: cp build_depends_humble.repos build_depends.repos
41+
run: cp build_depends_stable.repos build_depends.repos
4242
shell: bash
4343

4444
- name: Build

.github/workflows/clang-tidy-differential.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ jobs:
9393
if: ${{ github.event.pull_request.base.ref != 'humble' && github.event.pull_request.base.ref != 'jazzy' }}
9494
uses: ./.github/actions/combine-repos-action
9595
with:
96-
base_file: build_depends_humble.repos
96+
base_file: build_depends_stable.repos
9797
overlay_file: build_depends_nightly.repos
9898
output_file: build_depends.repos
9999

100100
- name: Prepare build_depends.repos file (humble/jazzy branch)
101101
if: ${{ github.event.pull_request.base.ref == 'humble' || github.event.pull_request.base.ref == 'jazzy' }}
102-
run: cp build_depends_humble.repos build_depends.repos
102+
run: cp build_depends_stable.repos build_depends.repos
103103
shell: bash
104104

105105
- name: Run clang-tidy

.github/workflows/generate-build-cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Prepare build_depends.repos file
6262
uses: ./.github/actions/combine-repos-action
6363
with:
64-
base_file: build_depends_humble.repos
64+
base_file: build_depends_stable.repos
6565
overlay_file: build_depends_nightly.repos
6666
output_file: build_depends.repos
6767

build_depends_nightly.repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Expected usage: first import build_depends_$ROS_DISTRO.repos, then import this.
1+
# Expected usage: first import build_depends_stable.repos, then import this.
22

33
repositories:
44
# core

0 commit comments

Comments
 (0)