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

Commit

Permalink
REVERTME: Local crates
Browse files Browse the repository at this point in the history
  • Loading branch information
t-nelson committed Oct 13, 2020
1 parent fbd4cec commit 7b06cc4
Show file tree
Hide file tree
Showing 3 changed files with 117 additions and 5 deletions.
113 changes: 110 additions & 3 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion account-decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ solana-config-program = { path = "../programs/config", version = "1.5.0" }
solana-sdk = { path = "../sdk", version = "1.5.0" }
solana-stake-program = { path = "../programs/stake", version = "1.5.0" }
solana-vote-program = { path = "../programs/vote", version = "1.5.0" }
spl-token-v2-0 = { package = "spl-token", version = "=2.0.6", features = ["skip-no-mangle"] }
spl-token-v2-0 = { path = "../../solana-program-library/token/program", package = "spl-token", version = "=2.0.7" }
thiserror = "1.0"

[package.metadata.docs.rs]
Expand Down
7 changes: 6 additions & 1 deletion ci/docker-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ if [[ -n $CI ]]; then
else
# Avoid sharing ~/.cargo when building locally to avoid a mixed macOS/Linux
# ~/.cargo
ARGS+=(--volume "$PWD:/home")
ARGS+=(
--volume "$PWD:/home"
--volume "/home/trent/code/solana/solana-2:/solana-2"
--volume "/home/trent/code/solana/solana-program-library:/solana-program-library"
)

fi
ARGS+=(--env "HOME=/home" --env "CARGO_HOME=/home/.cargo")

Expand Down

0 comments on commit 7b06cc4

Please sign in to comment.