Skip to content

Commit

Permalink
test-artifacts 1
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstam committed Dec 12, 2024
1 parent 06900c1 commit 6854011
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions crates/test-artifacts/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ use std::{
use sp1_build::build_program_with_args;

Check warning on line 6 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / blobstream-01j6z95bdme9svevmfyc974bja (network)

unused import: `sp1_build::build_program_with_args`

Check warning on line 6 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / blobstream-01j6z63fgafrc8jeh0k12gbtvw (network)

unused import: `sp1_build::build_program_with_args`

Check warning on line 6 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / regex (network)

unused import: `sp1_build::build_program_with_args`

Check warning on line 6 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / vector-01j6xzy366ff5tbkzcrs8pma02 (network)

unused import: `sp1_build::build_program_with_args`

Check warning on line 6 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / vector-01j6y06de0fdaafemr8b1t69z3 (network)

unused import: `sp1_build::build_program_with_args`

Check warning on line 6 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / blobstream-01j6z9ak0ke9srsppgywgke6fj (network)

unused import: `sp1_build::build_program_with_args`

Check warning on line 6 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / fibonacci-17k (network)

unused import: `sp1_build::build_program_with_args`

Check warning on line 6 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / ssz-withdrawals (network)

unused import: `sp1_build::build_program_with_args`

Check warning on line 6 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / blobstream-01j6z9ak0ke9srsppgywgke6fj (network)

unused import: `sp1_build::build_program_with_args`

fn main() -> Result<()> {

Check failure on line 8 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / blobstream-01j6z95bdme9svevmfyc974bja (network)

mismatched types

Check failure on line 8 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / blobstream-01j6z63fgafrc8jeh0k12gbtvw (network)

mismatched types

Check failure on line 8 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / regex (network)

mismatched types

Check failure on line 8 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / vector-01j6xzy366ff5tbkzcrs8pma02 (network)

mismatched types

Check failure on line 8 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / vector-01j6y06de0fdaafemr8b1t69z3 (network)

mismatched types

Check failure on line 8 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / blobstream-01j6z9ak0ke9srsppgywgke6fj (network)

mismatched types

Check failure on line 8 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / fibonacci-17k (network)

mismatched types

Check failure on line 8 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / ssz-withdrawals (network)

mismatched types

Check failure on line 8 in crates/test-artifacts/build.rs

View workflow job for this annotation

GitHub Actions / blobstream-01j6z9ak0ke9srsppgywgke6fj (network)

mismatched types
let tests_path =
[env!("CARGO_MANIFEST_DIR"), "programs"].iter().collect::<PathBuf>().canonicalize()?;
// let tests_path =
// [env!("CARGO_MANIFEST_DIR"), "programs"].iter().collect::<PathBuf>().canonicalize()?;

build_program_with_args(
tests_path
.to_str()
.ok_or_else(|| Error::other(format!("expected {tests_path:?} to be valid UTF-8")))?,
Default::default(),
);
// build_program_with_args(
// tests_path
// .to_str()
// .ok_or_else(|| Error::other(format!("expected {tests_path:?} to be valid UTF-8")))?,
// Default::default(),
// );

Ok(())
// Ok(())
}

0 comments on commit 6854011

Please sign in to comment.