Skip to content

Commit

Permalink
Merge pull request #1151 from esc/reformat-llvmdev_evaluate.py
Browse files Browse the repository at this point in the history
fix flake8 issues
  • Loading branch information
esc authored Feb 6, 2025
2 parents 581a9bf + 7919e18 commit a8744ca
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions buildscripts/github/llvmdev_evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@
}

default_include = [
{ "runner": runner_mapping["linux-64"],
{
"runner": runner_mapping["linux-64"],
"platform": "linux-64",
"recipe": "llvmdev"
"recipe": "llvmdev",
},
{ "runner": runner_mapping["win-64"],
{
"runner": runner_mapping["win-64"],
"platform": "win-64",
"recipe": "llvmdev"
"recipe": "llvmdev",
},
{
"runner": runner_mapping["win-64"],
Expand All @@ -33,7 +35,10 @@
},
]

print(f"Deciding what to do based on event: '{event}', label: '{label}', inputs: '{inputs}'")
print(
"Deciding what to do based on event: "
f"'{event}', label: '{label}', inputs: '{inputs}'"
)
if event == "pull_request":
print("pull_request detected")
include = default_include
Expand Down

0 comments on commit a8744ca

Please sign in to comment.