Skip to content

Commit

Permalink
don't use hashed repos for rc builds
Browse files Browse the repository at this point in the history
  • Loading branch information
NeilHanlon committed May 2, 2024
1 parent 1adce94 commit d860d4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iso/empanadas/empanadas/configs/el9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 3 additions & 1 deletion iso/empanadas/empanadas/scripts/launch_builds.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit d860d4e

Please sign in to comment.