mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
ci: Fix WPT try layout configuration (#31118)
The member `layout` was renamed to `wpt_layout`, but not in all places. This fixes that issue.
This commit is contained in:
parent
d9cb4445ff
commit
c3fd27c225
1 changed files with 3 additions and 3 deletions
6
.github/workflows/try.yml
vendored
6
.github/workflows/try.yml
vendored
|
@ -79,9 +79,9 @@ jobs:
|
|||
if (tryString.includes("wpt")) {
|
||||
addPlatformToConfiguration("linux", configuration);
|
||||
if (tryString.includes("2020")) {
|
||||
configuration.wpt_layout = combineWPTLayoutOptions(configuration.layout, "2020");
|
||||
configuration.wpt_layout = combineWPTLayoutOptions(configuration.wpt_layout, "2020");
|
||||
} else {
|
||||
configuration.wpt_layout = combineWPTLayoutOptions(configuration.layout, "2013");
|
||||
configuration.wpt_layout = combineWPTLayoutOptions(configuration.wpt_layout, "2013");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -150,7 +150,7 @@ jobs:
|
|||
const formattedURL = "[#" + context.runId + "](" + url + ")";
|
||||
let platformsString = configuration.platforms.toString();
|
||||
makeComment("🔨 Triggering try run (" + formattedURL + ") with platforms=" +
|
||||
platformsString + " and layout=" + configuration.layout);
|
||||
platformsString + " and layout=" + configuration.wpt_layout);
|
||||
return configuration;
|
||||
|
||||
run-try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue