Skip to content

Commit 64446fa

Browse files
committed
disable https test
temporary stopgap, can be reverted once the prebuilt ovmf binarties have https support included. Signed-off-by: Gerd Hoffmann <[email protected]>
1 parent ccb6a46 commit 64446fa

File tree

1 file changed

+12
-9
lines changed
  • uefi-test-runner/src/proto/network

1 file changed

+12
-9
lines changed

uefi-test-runner/src/proto/network/http.rs

+12-9
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,18 @@ pub fn test() {
102102
info!("Testing HTTP");
103103
fetch_http(*h, "http://example.com/").expect("http request failed");
104104

105-
// FYI: not all firmware builds support modern tls versions.
106-
// request() -> ABORTED typically is a tls handshake error.
107-
// check the firmware log for details.
108-
info!("Testing HTTPS");
109-
fetch_http(
110-
*h,
111-
"https://raw.githubusercontent.com/rust-osdev/uefi-rs/refs/heads/main/Cargo.toml",
112-
)
113-
.expect("https request failed");
105+
// prebuild ovmf lacks TLS support, so this fails in CI, disable for now.
106+
if false {
107+
// FYI: not all firmware builds support modern tls versions.
108+
// request() -> ABORTED typically is a tls handshake error.
109+
// check the firmware log for details.
110+
info!("Testing HTTPS");
111+
fetch_http(
112+
*h,
113+
"https://raw.githubusercontent.com/rust-osdev/uefi-rs/refs/heads/main/Cargo.toml",
114+
)
115+
.expect("https request failed");
116+
}
114117

115118
info!("PASSED");
116119
}

0 commit comments

Comments
 (0)