forked from Mirror/pmbootstrap
Add pmbootstrap checksum --verify (!1788)
Download all sources and verify their checksums. This will be used in pmaports.git CI, if ci:skip-build is set in the commit message (currently it just skips the build, and we don't test if the source checksums are valid or not).
This commit is contained in:
parent
110b5821ac
commit
b4c301974e
5 changed files with 22 additions and 4 deletions
|
@ -119,7 +119,10 @@ def build_init(args):
|
|||
|
||||
def checksum(args):
|
||||
for package in args.packages:
|
||||
pmb.build.checksum(args, package)
|
||||
if args.verify:
|
||||
pmb.build.checksum.verify(args, package)
|
||||
else:
|
||||
pmb.build.checksum.check(args, package)
|
||||
|
||||
|
||||
def chroot(args):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue