Skip to content

Commit 8e5410d

Browse files
authored
[build] Split Rakefile into per-language task files (#16979)
* [build] Split Rakefile into per-language task files * Run rubocop on Rakefile and rake_tasks
1 parent f40b8ba commit 8e5410d

16 files changed

Lines changed: 1426 additions & 1245 deletions

File tree

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
- name: browsers
113113
run: ./go update_browsers ${{ inputs.chrome_channel }}
114114
- name: devtools
115-
run: ./go all:update_cdp ${{ inputs.chrome_channel }}
115+
run: ./go update_cdp ${{ inputs.chrome_channel }}
116116
- name: manager
117117
run: ./go update_manager
118118
- name: dependencies

BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ filegroup(
2525
name = "rakefile",
2626
srcs = [
2727
"Rakefile",
28-
],
28+
] + glob(["rake_tasks/*.rake", "rake_tasks/*.rb"]),
2929
visibility = ["//rb:__subpackages__"],
3030
)
3131

0 commit comments

Comments
 (0)