From cedd59361eb6db44544514bc8b4ccb717d9f8adb Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Mon, 7 Aug 2023 19:10:30 +0530 Subject: [PATCH] Pass `--layout-2013` flag in 'WPT import' job (#30077) PR #30048 switched `./mach update-wpt` to use 2020 layout engine by default. Since the WPT import job was not passing any flags when updating 2013 expectations, it was not using the correct metadata files, leading to failures when landing the recent [wpt sync PR](https://github.com/servo/servo/pull/30075) --- .github/workflows/scheduled-wpt-import.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scheduled-wpt-import.yml b/.github/workflows/scheduled-wpt-import.yml index 2d50192ceea..368b10107f4 100644 --- a/.github/workflows/scheduled-wpt-import.yml +++ b/.github/workflows/scheduled-wpt-import.yml @@ -52,7 +52,7 @@ jobs: export CURRENT_DATE=$(date +"%d-%m-%Y") echo $CURRENT_DATE echo "CURRENT_DATE=$CURRENT_DATE" >> $GITHUB_ENV - ./mach update-wpt wpt-logs-linux-layout-2013/test-wpt.*.log + ./mach update-wpt --layout-2013 wpt-logs-linux-layout-2013/test-wpt.*.log ./mach update-wpt --layout-2020 wpt-logs-linux-layout-2020/test-wpt.*.log git add tests/wpt/meta tests/wpt/meta-legacy-layout git commit -a --amend --no-edit