don't use hashed repos for rc builds

This commit is contained in:
Neil Hanlon 2024-05-01 23:58:43 -04:00
parent 1adce9408b
commit d860d4e661
Signed by untrusted user: neil
GPG Key ID: 705BC21EC3C70F34
2 changed files with 4 additions and 2 deletions

View File

@ -17,7 +17,7 @@
- ppc64le
- s390x
provide_multilib: True
project_id: '6202c09e-6252-4d3a-bcd3-9c7751682970'
project_id: 'df5bcbfc-ba83-4da8-84d6-ae0168921b4d'
repo_symlinks:
NFV: 'nfv'
renames:

View File

@ -31,9 +31,11 @@ def run():
elif results.env == "all":
arches = EKSARCH+EXTARCH
command = ["build-iso", "--release", f"{results.release}", "--isolation", "simple", "--hashed"]
command = ["build-iso", "--release", f"{results.release}", "--isolation", "simple"]
if results.rc:
command += ["--rc"]
else:
command += ["--hashed"]
buildstamp = datetime.datetime.utcnow()