Skip to content

Commit

Permalink
Try to fix CI
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
alexcrichton committed Oct 6, 2024
1 parent 694ee66 commit 63fc073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/wasi-nn/tests/check/openvino.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)?;
Expand Down

0 comments on commit 63fc073

Please sign in to comment.