Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #23 build UEFI iPXE image #24

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ jobs:
EOF

- name: iPXE Build iPXE ISO
# Why do I see "file:autoexec.ipxe not found" when
# this ipxe.iso boots?
# Answer: It's not an error, it's information and not requried.
# See https://github.com/ipxe/ipxe/issues/643#issuecomment-2486543385
#
run: |
cd ipxe/src
pwd
Expand All @@ -78,11 +83,10 @@ jobs:
echo Enable https download
sed -i 's/undef.*DOWNLOAD_PROTO_HTTPS/define DOWNLOAD_PROTO_HTTPS/g' config/general.h
echo Build iPXE ISO
make \
make bin-x86_64-efi/ipxe.iso \
DEBUG=tls,httpcore,x509,certstore \
CERT=ca.pem,isrgrootx1.pem,lets-encrypt-r3.pem \
TRUST=ca.pem,isrgrootx1.pem,lets-encrypt-r3.pem \
bin/ipxe.iso \
EMBED=script.ipxe

- name: iPXE Publish iPXE ISO artifact
Expand Down