Skip to content

Commit 89a587e

Browse files
committed
fixup! ci: Split up generated files by tree and toolchain version
Signed-off-by: Nathan Chancellor <[email protected]>
1 parent ccc7ce8 commit 89a587e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

generate_tuxsuite.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ def emit_tuxsuite_yml(config, tree, llvm_version):
5454
distribution_configs = []
5555
allconfigs = []
5656
for build in config["builds"]:
57-
if build["git_repo"] == repo and build["git_ref"] == ref and build[
58-
"llvm_version"] == llvm_version:
57+
if build["git_repo"] == repo and \
58+
build["git_ref"] == ref and \
59+
build["llvm_version"] == llvm_version:
5960
arch = build["ARCH"] if "ARCH" in build else "x86_64"
6061
if llvm_version == max_version:
6162
toolchain = "clang-nightly"

generate_workflow.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,9 @@ def print_builds(config, tree_name, llvm_version):
167167
check_logs_distribution_configs = {}
168168
check_logs_allconfigs = {}
169169
for build in config["builds"]:
170-
if build["git_repo"] == repo and build["git_ref"] == ref and build[
171-
"llvm_version"] == llvm_version:
170+
if build["git_repo"] == repo and \
171+
build["git_ref"] == ref and \
172+
build["llvm_version"] == llvm_version:
172173
cron_schedule = build["schedule"]
173174
if "defconfig" in str(build["config"]):
174175
check_logs_defconfigs.update(get_steps(build, "defconfigs"))

0 commit comments

Comments
 (0)