Skip to content

Commit

Permalink
generate_workflow.py: Include toolchain version in workflow name
Browse files Browse the repository at this point in the history
Otherwise, the workflow names are all the same in GitHub's UI, which
makes it hard to navigate.

Signed-off-by: Nathan Chancellor <nathan@kernel.org>
  • Loading branch information
nathanchance committed Feb 17, 2022
1 parent baccaa8 commit 21f7ff2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion generate_workflow.py
Expand Up @@ -179,7 +179,8 @@ def print_builds(config, tree_name, llvm_version):
else:
check_logs_allconfigs.update(get_steps(build, "allconfigs"))

workflow = initial_workflow(tree_name, cron_schedule, tuxsuite_yml,
workflow_name = "{} ({})".format(tree_name, toolchain)
workflow = initial_workflow(workflow_name, cron_schedule, tuxsuite_yml,
github_yml)
workflow["jobs"].update(tuxsuite_setups("defconfigs", tuxsuite_yml))
workflow["jobs"].update(check_logs_defconfigs)
Expand Down

0 comments on commit 21f7ff2

Please sign in to comment.