mesonbuild / wrapdb

New wrap requests
https://mesonbuild.com/Adding-new-projects-to-wrapdb.html
MIT License
78 stars 196 forks source link

Running sanity checks locally tries to build all projects #1742

Open WillAyd opened 1 week ago

WillAyd commented 1 week ago

Apologies if overlooking something in the docs, but I didn't see how to get the ./tools/sanity_checks.sh script to just run for one library. Whenever I run it it seems to want to build all projects in the wrapdb, which is prohibitively expensive.

Is there an easy way to just have this script look at one wrap entry?

eli-schwartz commented 1 week ago

IIRC it calculates what to build by looking at tags, so try git fetch --tags. Anything else would require a patch to update the script (which I'm not saying we shouldn't do -- just that it doesn't currently exist :D)

WillAyd commented 1 week ago

Ah thanks! That did the trick