From fed7a5ed1d007cdb2bc123b0bf0b4ff60b3999b8 Mon Sep 17 00:00:00 2001 From: Max Weiss Date: Thu, 29 Apr 2021 15:12:54 -0700 Subject: [PATCH] Disable IPXE binary builds for faster testing --- buildbot/buildbot_steps.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/buildbot/buildbot_steps.sh b/buildbot/buildbot_steps.sh index 0da0be9..1edcdfe 100755 --- a/buildbot/buildbot_steps.sh +++ b/buildbot/buildbot_steps.sh @@ -80,8 +80,8 @@ function make_ipxe_lkrn() { cd "${ipxe_src_dir}/src/" || return 1 - make bin/ipxe.lkrn EMBED="${embed_file}" CERT="${signing_cert},${ca_cert}" TRUST="${ca_cert}" || return 2 - + #make bin/ipxe.lkrn EMBED="${embed_file}" CERT="${signing_cert},${ca_cert}" TRUST="${ca_cert}" || return 2 + echo lkrn > bin/ipxe.lkrn return 0 } @@ -114,8 +114,8 @@ function make_ipxe_iso() { cd "${ipxe_src_dir}/src/" || return 1 - make bin/ipxe.iso EMBED="${embed_file}" CERT="${signing_cert},${ca_cert}" TRUST="${ca_cert}" || return 2 - + #make bin/ipxe.iso EMBED="${embed_file}" CERT="${signing_cert},${ca_cert}" TRUST="${ca_cert}" || return 2 + echo iso > bin/ipxe.iso return 0 }