Skip to content

Commit

Permalink
build.sh: freeze edk2 to fix PXE 4K UEFI tests
Browse files Browse the repository at this point in the history
FCOS PXE 4K UEFI tests started to fail after edk2-ovmf updated to
20240524-1.fc40. Freeze on the previous version temporarily.

See also: #3815

Co-authored-by: Jonathan Lebon <jonathan@jlebon.com>
  • Loading branch information
yasminvalim and jlebon committed Jun 4, 2024
1 parent 4d0e210 commit f056c0e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ install_rpms() {

frozendeps=""

# freeze edk2 for https://github.com/coreos/coreos-assembler/issues/3815
case "${arch}" in
x86_64|aarch64) frozendeps=$(echo edk2-{ovmf,aarch64}-20240214-7.fc40);;
*) ;;
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 f056c0e

Please sign in to comment.