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:
parent
c91296f001
commit
e62fc866db
2 changed files with 15 additions and 6 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue