Meta: Skip build directories when building Ladybird module in flatpak

flatpak-builder doesn't respect .gitignore when creating its local build
directory, so we need to explicitly skip potentially large ignored
directories to avoid bloating the flatpak build directory during builds.
This commit is contained in:
Andrew Kaster 2025-07-22 10:23:42 -06:00 committed by Andrew Kaster
commit 08221c2534
Notes: github-actions[bot] 2025-07-23 21:13:52 +00:00

View file

@ -493,7 +493,11 @@
}, },
{ {
"type": "dir", "type": "dir",
"path": "../../../" "path": "../../../",
"skip": [
"Build",
"Tests/LibWeb/WPT"
]
} }
], ],
"build-options": { "build-options": {