Skip to content

Commit

Permalink
build.sh: freeze grub2 since it's not working for ppc64le PXE tests
Browse files Browse the repository at this point in the history
See #3370
  • Loading branch information
dustymabe committed Feb 23, 2023
1 parent d8724d4 commit f502808
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,16 @@ install_rpms() {
local builddeps
local frozendeps

# no frozen deps right now
frozendeps=""

# freeze grub2 for https://github.com/coreos/coreos-assembler/issues/3370
case "${arch}" in
x86_64) frozendeps=$(echo grub2-{common,tools,tools-extra,tools-minimal,efi-x64,pc,pc-modules}-1:2.06-75.fc37);;
aarch64) frozendeps=$(echo grub2-{common,tools,tools-extra,tools-minimal,efi-aa64}-1:2.06-75.fc37);;
ppc64le) frozendeps=$(echo grub2-{common,tools,tools-extra,tools-minimal,ppc64le,ppc64le-modules}-1:2.06-75.fc37);;
*) ;;
esac

# First, a general update; this is best practice. We also hit an issue recently
# where qemu implicitly depended on an updated libusbx but didn't have a versioned
# requires https://bugzilla.redhat.com/show_bug.cgi?id=1625641
Expand Down

0 comments on commit f502808

Please sign in to comment.