From 63fc07390daa1615de0ebdb0b7780a8c89deabfb Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sat, 5 Oct 2024 18:19:25 -0700 Subject: [PATCH] Try to fix CI Currently PRs can't land due to failing wasi-nn tests. I believe this is due to recent changes in the https://github.com/intel/openvino-rs repository so this commit changes from the `main` commit to a historical commit where things should be downloadable. --- crates/wasi-nn/tests/check/openvino.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasi-nn/tests/check/openvino.rs b/crates/wasi-nn/tests/check/openvino.rs index fccdc678d09e..d4334c208155 100644 --- a/crates/wasi-nn/tests/check/openvino.rs +++ b/crates/wasi-nn/tests/check/openvino.rs @@ -19,7 +19,7 @@ pub fn is_installed() -> Result<()> { pub fn are_artifacts_available() -> Result<()> { let _exclusively_retrieve_artifacts = DOWNLOAD_LOCK.lock().unwrap(); const BASE_URL: &str = - "https://github.com/intel/openvino-rs/raw/main/crates/openvino/tests/fixtures/mobilenet"; + "https://github.com/intel/openvino-rs/raw/72d75601e9be394b3e8c7ff28313d66ef53ff358/crates/openvino/tests/fixtures/mobilenet"; let artifacts_dir = artifacts_dir(); if !artifacts_dir.is_dir() { fs::create_dir(&artifacts_dir)?;