Skip to content

Commit b55f874

Browse files
committed
Bug 1990505 [wpt PR 55040] - Ignore WEB_FEATURES.yml for update-wasm-tests workflow, a=testonly
Automatic update from web-platform-tests Ignore WEB_FEATURES.yml for update-wasm-tests workflow (#55040) Currently, the update-wasm-tests workflow removes all the existing WASM test files before copying over the new tests. This means that we cannot land WEB_FEATURES.yml files for WASM because they would be removed during the next run of the workflow. This change moves to using rsync and excludes WEB_FEATURES.yml files. This will allow WEB_FEATURES.yml files to persist between workflow runs. Given these generated PRs are still manually reviewed, incoming PRs with changes to the file names will be caught by the WEB_FEATURES linter And reviewers can update them if needed. -- wpt-commits: fe7656cebc4c595632574e28c3e56a5c72791774 wpt-pr: 55040 UltraBlame original commit: 29581edbd5dd6beabc3bdecabbd3ac521000f035
1 parent 30ca325 commit b55f874

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

testing/web-platform/tests/.github/workflows/update-wasm-tests.yml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -210,21 +210,30 @@ wasm
210210
/
211211
core
212212
entirely
213+
but
214+
preserve
215+
WEB_FEATURES
216+
.
217+
yml
218+
files
213219
.
214220
run
215221
:
216222
|
217-
rm
223+
rsync
218224
-
219-
rf
220-
wpt
221-
/
222-
wasm
223-
/
224-
core
225-
cp
225+
a
226226
-
227-
r
227+
-
228+
delete
229+
-
230+
-
231+
exclude
232+
'
233+
WEB_FEATURES
234+
.
235+
yml
236+
'
228237
wasm
229238
-
230239
spec

0 commit comments

Comments
 (0)