Adding --payload-lint to CI/CD

This commit is contained in:
Miroslav Štampar 2026-07-08 17:51:37 +02:00
parent 0033934426
commit fd009027f7
9 changed files with 449 additions and 8 deletions

View file

@ -195,6 +195,9 @@ def main():
elif conf.fpTest:
from lib.core.testing import fpTest
os._exitcode = 1 - (fpTest() or 0)
elif conf.payloadLint:
from lib.core.testing import payloadLintTest
os._exitcode = 1 - (payloadLintTest() or 0)
elif conf.apiTest:
from lib.core.testing import apiTest
os._exitcode = 1 - (apiTest() or 0)
@ -610,7 +613,7 @@ def main():
except OSError:
pass
if any((conf.vulnTest, conf.fpTest, conf.smokeTest, conf.apiTest)) or not filterNone(filepath for filepath in glob.glob(os.path.join(tempDir, '*')) if not any(filepath.endswith(_) for _ in (".lock", ".exe", ".so", '_'))): # ignore junk files
if any((conf.vulnTest, conf.fpTest, conf.smokeTest, conf.payloadLint, conf.apiTest)) or not filterNone(filepath for filepath in glob.glob(os.path.join(tempDir, '*')) if not any(filepath.endswith(_) for _ in (".lock", ".exe", ".so", '_'))): # ignore junk files
try:
shutil.rmtree(tempDir, ignore_errors=True)
except OSError: