mirror of
https://github.com/peridotbuild/pv2.git
synced 2024-11-21 20:51:26 +00:00
add s3 uploader
This commit is contained in:
parent
46ad89c403
commit
67106beac7
Binary file not shown.
@ -464,12 +464,6 @@ class SrpmImport(Import):
|
|||||||
self.generate_metadata(git_repo_path, self.rpm_name, sources)
|
self.generate_metadata(git_repo_path, self.rpm_name, sources)
|
||||||
self.generate_filesum(git_repo_path, self.rpm_name, self.srpm_hash)
|
self.generate_filesum(git_repo_path, self.rpm_name, self.srpm_hash)
|
||||||
|
|
||||||
if skip_lookaside:
|
|
||||||
self.skip_import_lookaside(git_repo_path, sources)
|
|
||||||
else:
|
|
||||||
self.import_lookaside(git_repo_path, self.rpm_name, branch,
|
|
||||||
sources, self.dest_lookaside)
|
|
||||||
|
|
||||||
if s3_upload:
|
if s3_upload:
|
||||||
# I don't want to blatantly blow up here yet.
|
# I don't want to blatantly blow up here yet.
|
||||||
if len(self.__aws_access_key_id) == 0 or len(self.__aws_access_key) == 0 or len(self.__aws_bucket) == 0:
|
if len(self.__aws_access_key_id) == 0 or len(self.__aws_access_key) == 0 or len(self.__aws_bucket) == 0:
|
||||||
@ -483,6 +477,12 @@ class SrpmImport(Import):
|
|||||||
self.__aws_access_key,
|
self.__aws_access_key,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if skip_lookaside:
|
||||||
|
self.skip_import_lookaside(git_repo_path, sources)
|
||||||
|
else:
|
||||||
|
self.import_lookaside(git_repo_path, self.rpm_name, branch,
|
||||||
|
sources, self.dest_lookaside)
|
||||||
|
|
||||||
# Temporary hack like with git.
|
# Temporary hack like with git.
|
||||||
dest_gitignore_file = f'{git_repo_path}/.gitignore'
|
dest_gitignore_file = f'{git_repo_path}/.gitignore'
|
||||||
if os.path.exists(dest_gitignore_file):
|
if os.path.exists(dest_gitignore_file):
|
||||||
@ -796,12 +796,6 @@ class GitImport(Import):
|
|||||||
self.generate_metadata(dest_git_repo_path, self.rpm_name, sources)
|
self.generate_metadata(dest_git_repo_path, self.rpm_name, sources)
|
||||||
self.generate_filesum(dest_git_repo_path, self.rpm_name, "Direct Git Import")
|
self.generate_filesum(dest_git_repo_path, self.rpm_name, "Direct Git Import")
|
||||||
|
|
||||||
if skip_lookaside:
|
|
||||||
self.skip_import_lookaside(dest_git_repo_path, sources)
|
|
||||||
else:
|
|
||||||
self.import_lookaside(dest_git_repo_path, self.rpm_name, dest_branch,
|
|
||||||
sources, self.dest_lookaside)
|
|
||||||
|
|
||||||
if s3_upload:
|
if s3_upload:
|
||||||
# I don't want to blatantly blow up here yet.
|
# I don't want to blatantly blow up here yet.
|
||||||
if len(self.__aws_access_key_id) == 0 or len(self.__aws_access_key) == 0 or len(self.__aws_bucket) == 0:
|
if len(self.__aws_access_key_id) == 0 or len(self.__aws_access_key) == 0 or len(self.__aws_bucket) == 0:
|
||||||
@ -815,6 +809,12 @@ class GitImport(Import):
|
|||||||
self.__aws_access_key,
|
self.__aws_access_key,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if skip_lookaside:
|
||||||
|
self.skip_import_lookaside(dest_git_repo_path, sources)
|
||||||
|
else:
|
||||||
|
self.import_lookaside(dest_git_repo_path, self.rpm_name, dest_branch,
|
||||||
|
sources, self.dest_lookaside)
|
||||||
|
|
||||||
# This is a temporary hack. There are cases that the .gitignore that's
|
# This is a temporary hack. There are cases that the .gitignore that's
|
||||||
# provided by upstream errorneouly keeps out certain sources, despite
|
# provided by upstream errorneouly keeps out certain sources, despite
|
||||||
# the fact that they were pushed before. We're killing off any
|
# the fact that they were pushed before. We're killing off any
|
||||||
|
Loading…
Reference in New Issue
Block a user