diff options
author | Martin Robinson <mrobinson@igalia.com> | 2024-01-18 13:11:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 12:11:56 +0000 |
commit | c3fd27c225e66fc00611bcd35f462077dfcf21d1 (patch) | |
tree | ef5e1793041e46589d3f4cc37bff843202191dd0 /.github | |
parent | d9cb4445ff85b687307f93d950eab810dee2c6b0 (diff) | |
download | servo-c3fd27c225e66fc00611bcd35f462077dfcf21d1.tar.gz servo-c3fd27c225e66fc00611bcd35f462077dfcf21d1.zip |
ci: Fix WPT try layout configuration (#31118)
The member `layout` was renamed to `wpt_layout`, but not in all places.
This fixes that issue.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/try.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/try.yml b/.github/workflows/try.yml index 5ae34e97f01..301b74deadd 100644 --- a/.github/workflows/try.yml +++ b/.github/workflows/try.yml @@ -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: |