Skip to content

Commit a642f62

Browse files
authored
Try to fix CI (#9388)
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.
1 parent dbd8e71 commit a642f62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/wasi-nn/src/testing.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ fn check_openvino_is_installed() -> Result<()> {
8686
fn check_openvino_artifacts_are_available() -> Result<()> {
8787
let _exclusively_retrieve_artifacts = ARTIFACTS.lock().unwrap();
8888
const BASE_URL: &str =
89-
"https://github.com/intel/openvino-rs/raw/main/crates/openvino/tests/fixtures/mobilenet";
89+
"https://github.com/intel/openvino-rs/raw/72d75601e9be394b3e8c7ff28313d66ef53ff358/crates/openvino/tests/fixtures/mobilenet";
9090
let artifacts_dir = artifacts_dir();
9191
if !artifacts_dir.is_dir() {
9292
fs::create_dir(&artifacts_dir)?;
@@ -126,7 +126,7 @@ fn check_onnx_artifacts_are_available() -> Result<()> {
126126
let _exclusively_retrieve_artifacts = ARTIFACTS.lock().unwrap();
127127

128128
const OPENVINO_BASE_URL: &str =
129-
"https://github.com/intel/openvino-rs/raw/main/crates/openvino/tests/fixtures/mobilenet";
129+
"https://github.com/intel/openvino-rs/raw/72d75601e9be394b3e8c7ff28313d66ef53ff358/crates/openvino/tests/fixtures/mobilenet";
130130
const ONNX_BASE_URL: &str =
131131
"https://github.com/onnx/models/raw/bec48b6a70e5e9042c0badbaafefe4454e072d08/validated/vision/classification/mobilenet/model/mobilenetv2-7.onnx?download=";
132132

0 commit comments

Comments
 (0)