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)
This commit is contained in:
Mukilan Thiyagarajan 2023-08-07 19:10:30 +05:30 committed by GitHub
parent 9514f670d1
commit cedd59361e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,7 +52,7 @@ jobs:
export CURRENT_DATE=$(date +"%d-%m-%Y") export CURRENT_DATE=$(date +"%d-%m-%Y")
echo $CURRENT_DATE echo $CURRENT_DATE
echo "CURRENT_DATE=$CURRENT_DATE" >> $GITHUB_ENV 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 ./mach update-wpt --layout-2020 wpt-logs-linux-layout-2020/test-wpt.*.log
git add tests/wpt/meta tests/wpt/meta-legacy-layout git add tests/wpt/meta tests/wpt/meta-legacy-layout
git commit -a --amend --no-edit git commit -a --amend --no-edit