mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00
scripts/test-remote-image: add --skip-download option
Adding the possibility to skip the download phase completely. This is useful for repeating runs with the same image types and similar configurations. (From OE-Core rev: 3cc3f8a069b3d6d895afa6f192b36443b8328f40) Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
eb867257cc
commit
d2c59d31d7
|
@ -78,6 +78,7 @@ def get_args_parser():
|
||||||
parser.add_argument('--required-packages', required=False, action="store", nargs='*', dest="required_packages", default=None, help='Required packages for the tests. They will be built before the testing begins.')
|
parser.add_argument('--required-packages', required=False, action="store", nargs='*', dest="required_packages", default=None, help='Required packages for the tests. They will be built before the testing begins.')
|
||||||
parser.add_argument('--targetprofile', required=False, action="store", nargs=1, dest="targetprofile", default='AutoTargetProfile', help='The target profile to be used.')
|
parser.add_argument('--targetprofile', required=False, action="store", nargs=1, dest="targetprofile", default='AutoTargetProfile', help='The target profile to be used.')
|
||||||
parser.add_argument('--repoprofile', required=False, action="store", nargs=1, dest="repoprofile", default='PublicAB', help='The repo profile to be used.')
|
parser.add_argument('--repoprofile', required=False, action="store", nargs=1, dest="repoprofile", default='PublicAB', help='The repo profile to be used.')
|
||||||
|
parser.add_argument('--skip-download', required=False, action="store_true", dest="skip_download", default=False, help='Skip downloading the images completely. This needs the correct files to be present in the directory specified by the target profile.')
|
||||||
return parser
|
return parser
|
||||||
|
|
||||||
class BaseTargetProfile(object):
|
class BaseTargetProfile(object):
|
||||||
|
@ -248,13 +249,14 @@ class PublicAB(BaseRepoProfile):
|
||||||
|
|
||||||
class HwAuto():
|
class HwAuto():
|
||||||
|
|
||||||
def __init__(self, image_types, repolink, required_packages, targetprofile, repoprofile):
|
def __init__(self, image_types, repolink, required_packages, targetprofile, repoprofile, skip_download):
|
||||||
log.info('Initializing..')
|
log.info('Initializing..')
|
||||||
self.image_types = image_types
|
self.image_types = image_types
|
||||||
self.repolink = repolink
|
self.repolink = repolink
|
||||||
self.required_packages = required_packages
|
self.required_packages = required_packages
|
||||||
self.targetprofile = targetprofile
|
self.targetprofile = targetprofile
|
||||||
self.repoprofile = repoprofile
|
self.repoprofile = repoprofile
|
||||||
|
self.skip_download = skip_download
|
||||||
self.repo = self.get_repo_profile(self.repolink)
|
self.repo = self.get_repo_profile(self.repolink)
|
||||||
|
|
||||||
# Get the repository profile; for now we only look inside this module.
|
# Get the repository profile; for now we only look inside this module.
|
||||||
|
@ -304,15 +306,18 @@ class HwAuto():
|
||||||
# For each image type, download the needed files and run the tests.
|
# For each image type, download the needed files and run the tests.
|
||||||
noissuesfound = True
|
noissuesfound = True
|
||||||
for image_type in self.image_types:
|
for image_type in self.image_types:
|
||||||
target = self.get_target_profile(image_type)
|
if self.skip_download:
|
||||||
files_dict = target.get_files_dict()
|
log.info("Skipping downloading the images..")
|
||||||
log.info("Downloading files for %s" % image_type)
|
else:
|
||||||
for f in files_dict:
|
target = self.get_target_profile(image_type)
|
||||||
if self.repo.check_old_file(files_dict[f]):
|
files_dict = target.get_files_dict()
|
||||||
filepath = os.path.join(self.repo.localdir, files_dict[f])
|
log.info("Downloading files for %s" % image_type)
|
||||||
if os.path.exists(filepath):
|
for f in files_dict:
|
||||||
os.remove(filepath)
|
if self.repo.check_old_file(files_dict[f]):
|
||||||
self.repo.fetch(files_dict[f])
|
filepath = os.path.join(self.repo.localdir, files_dict[f])
|
||||||
|
if os.path.exists(filepath):
|
||||||
|
os.remove(filepath)
|
||||||
|
self.repo.fetch(files_dict[f])
|
||||||
|
|
||||||
result = self.runTestimageBuild(image_type)
|
result = self.runTestimageBuild(image_type)
|
||||||
if result.status != 0:
|
if result.status != 0:
|
||||||
|
@ -331,7 +336,7 @@ def main():
|
||||||
parser = get_args_parser()
|
parser = get_args_parser()
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
hwauto = HwAuto(image_types=args.image_types, repolink=args.repo_link, required_packages=args.required_packages, targetprofile=args.targetprofile, repoprofile=args.repoprofile)
|
hwauto = HwAuto(image_types=args.image_types, repolink=args.repo_link, required_packages=args.required_packages, targetprofile=args.targetprofile, repoprofile=args.repoprofile, skip_download=args.skip_download)
|
||||||
|
|
||||||
hwauto.run()
|
hwauto.run()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user