-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
1,690 additions
and
124 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[package] | ||
name = "blueprint-build-utils" | ||
version = "0.1.0" | ||
description = "Tangle Blueprint build utils" | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
publish = false | ||
|
||
[dependencies] | ||
|
||
[lints] | ||
workspace = true |
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,61 @@ | ||
use std::env; | ||
use std::path::PathBuf; | ||
use std::process::Command; | ||
|
||
/// Build the Smart contracts at the specified directories, automatically rerunning if changes are | ||
/// detected in this crates Smart Contracts (`./contracts/lib`). | ||
/// | ||
/// # Panics | ||
/// - If the Cargo Manifest directory is not found. | ||
/// - If the `forge` executable is not found. | ||
pub fn build_contracts(contract_dirs: Vec<&str>) { | ||
println!("cargo::rerun-if-changed=contracts/lib/*"); | ||
println!("cargo::rerun-if-changed=contracts/src/*"); | ||
|
||
// Get the project root directory | ||
let root = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap()); | ||
|
||
// Try to find the `forge` executable dynamically | ||
let forge_executable = match Command::new("which").arg("forge").output() { | ||
Ok(output) => { | ||
let path = String::from_utf8_lossy(&output.stdout).trim().to_string(); | ||
assert!( | ||
!path.is_empty(), | ||
"Forge executable not found. Make sure Foundry is installed." | ||
); | ||
path | ||
} | ||
Err(e) => panic!("Failed to find `forge` executable: {e}"), | ||
}; | ||
|
||
for dir in contract_dirs { | ||
let full_path = root.join(dir).canonicalize().unwrap_or_else(|_| { | ||
println!( | ||
"Directory not found or inaccessible: {}", | ||
root.join(dir).display() | ||
); | ||
root.join(dir) | ||
}); | ||
|
||
if full_path.exists() { | ||
println!("cargo:rerun-if-changed={}", full_path.display()); | ||
|
||
let status = Command::new(&forge_executable) | ||
.current_dir(&full_path) | ||
.arg("build") | ||
.status() | ||
.expect("Failed to execute Forge build"); | ||
|
||
assert!( | ||
status.success(), | ||
"Forge build failed for directory: {}", | ||
full_path.display() | ||
); | ||
} else { | ||
println!( | ||
"Directory not found or does not exist: {}", | ||
full_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/gadget-blueprint-serde-v0.1.0) - 2024-11-05 | ||
|
||
### Added | ||
|
||
- `blueprint-serde` crate ([#429](https://github.com/tangle-network/gadget/pull/429)) | ||
|
||
### Other | ||
|
||
- add description to crates ([#444](https://github.com/tangle-network/gadget/pull/444)) |
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,24 @@ | ||
[package] | ||
name = "gadget-blueprint-serde" | ||
version = "0.1.0" | ||
description = "Tangle Blueprints serde integration" | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
paste.workspace = true | ||
serde.workspace = true | ||
tangle-subxt.workspace = true | ||
|
||
[dev-dependencies] | ||
serde_test.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[features] | ||
default = ["std"] | ||
std = [] |
Oops, something went wrong.