1
0
Fork 0

Let's use workflows to parallelise the builds. (#20120)

* Let's use workflows to parallelise the builds.

* Nofail if files aren't present.

* Formatting.
This commit is contained in:
Nick Brassel 2023-03-15 08:31:10 +11:00 committed by GitHub
parent c91296f001
commit e62fc866db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 6 deletions

View file

@ -106,7 +106,7 @@ def mass_compile(cli):
def _make_filter(k, v):
expr = fnmatch.translate(v)
rule = re.compile(expr, re.IGNORECASE)
rule = re.compile(f'^{expr}$', re.IGNORECASE)
def f(e):
lhs = e[2].get(k)