Make make-release.py aware of the parallel build gitian descriptor file

This commit is contained in:
sasha 2022-07-27 15:12:50 -07:00
parent 5e05f060ef
commit e1b716b753
1 changed files with 3 additions and 3 deletions

View File

@ -246,7 +246,8 @@ def patch_version_in_files(release, releaseprev):
patch_README(release, releaseprev)
patch_clientversion_h(release)
patch_configure_ac(release)
patch_gitian_linux_yml(release, releaseprev)
patch_gitian_linux_yml(release, releaseprev, 'contrib/gitian-descriptors/gitian-linux.yml')
patch_gitian_linux_yml(release, releaseprev, 'contrib/gitian-descriptors/gitian-linux-parallel.yml')
@phase('Patching release height for end-of-support halt.')
@ -374,8 +375,7 @@ def patch_configure_ac(release):
)
def patch_gitian_linux_yml(release, releaseprev):
path = 'contrib/gitian-descriptors/gitian-linux.yml'
def patch_gitian_linux_yml(release, releaseprev, path):
with PathPatcher(path) as (inf, outf):
outf.write(inf.readline())