Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
make ci fail yet again with new misconfigured child dep
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Jun 23, 2023
1 parent b047447 commit 64fcd75
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"accounts-bench",
"accounts-cluster-bench",
"banking-bench",
"banking-bench2",
"banks-client",
"banks-interface",
"banks-server",
Expand Down Expand Up @@ -294,6 +295,7 @@ soketto = "0.7"
solana_rbpf = "=0.5.0"
solana-account-decoder = { path = "account-decoder", version = "=1.17.0" }
solana-address-lookup-table-program = { path = "programs/address-lookup-table", version = "=1.17.0" }
solana-banking-bench = { path = "banking-bench", version = "=1.17.0" }
solana-banks-client = { path = "banks-client", version = "=1.17.0" }
solana-banks-interface = { path = "banks-interface", version = "=1.17.0" }
solana-banks-server = { path = "banks-server", version = "=1.17.0" }
Expand Down
3 changes: 3 additions & 0 deletions banking-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ targets = ["x86_64-unknown-linux-gnu"]
[features]
dev-utils = []
dev-utils-ci-marker = ["dev-utils"]

[lib]
crate-type = ["cdylib", "rlib"]
1 change: 1 addition & 0 deletions banking-bench/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

15 changes: 15 additions & 0 deletions banking-bench2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "solana-banking-bench2"
publish = false
version = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
edition = { workspace = true }

[dependencies]
solana-banking-bench = { workspace = true }

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
1 change: 1 addition & 0 deletions banking-bench2/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fn main() {}
1 change: 1 addition & 0 deletions scripts/check-dev-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ source ci/rust-version.sh nightly
# dependencies should be edited likewise if any.
declare dev_util_tainted_packages=(
"solana-banking-bench"
"solana-banking-bench2"
)

mode=${1:-full}
Expand Down

0 comments on commit 64fcd75

Please sign in to comment.