Skip to content

Commit 85de89d

Browse files
authored
wasi-nn: pull test artifacts from new location (#10188)
Over in the [openvino-rs] repository, we removed large test artifacts that required Git LFS and moved these artifacts to a new download site, [download.01.org]. This broke Wasmtime's CI and was fixed in #9380 by pinning to a commit version. This change adopts the [download.01.org] site in Wasmtime's CI to fully cut the dependency to GitHub's LFS bandwidth limits. [openvino-rs]: https://github.com/intel/openvino-rs [download.01.org]: https://download.01.org/openvinotoolkit/fixtures prtest:full
1 parent f11cab4 commit 85de89d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/wasi-nn/tests/check/openvino.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ pub fn is_installed() -> Result<()> {
2222
/// download the artifacts if necessary.
2323
pub fn are_artifacts_available() -> Result<()> {
2424
let _exclusively_retrieve_artifacts = DOWNLOAD_LOCK.lock().unwrap();
25-
const BASE_URL: &str =
26-
"https://github.com/intel/openvino-rs/raw/72d75601e9be394b3e8c7ff28313d66ef53ff358/crates/openvino/tests/fixtures/mobilenet";
25+
const BASE_URL: &str = "https://download.01.org/openvinotoolkit/fixtures/mobilenet";
2726
let artifacts_dir = artifacts_dir();
2827
if !artifacts_dir.is_dir() {
2928
fs::create_dir(&artifacts_dir)?;

0 commit comments

Comments
 (0)