-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/use-runtime-env-for-cctl
- Loading branch information
Showing
4 changed files
with
60 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
use std::env; | ||
use std::fs; | ||
use std::path::Path; | ||
|
||
fn main() { | ||
// Path | ||
let session_binaries_dir = env::var("PATH_TO_SESSION_BINARIES") | ||
.expect("PATH_TO_SESSION_BINARIES environment variable is not set"); | ||
|
||
// Get the output directory set by Cargo. | ||
let out_dir = env::var("OUT_DIR").expect("OUT_DIR not set"); | ||
let source_path = Path::new(&session_binaries_dir).join("deposit-session-optimized.wasm"); | ||
let dest_path = Path::new(&out_dir).join("deposit-session-optimized.wasm"); | ||
|
||
// Copy the file from the source to the destination | ||
fs::copy(&source_path, dest_path).expect("Failed to copy WASM file"); | ||
|
||
// Print out a message to re-run this script if the source file changes. | ||
println!("cargo:rerun-if-changed={}", source_path.display()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters