tmp: bpf first

This commit is contained in:
Michael Vines 2020-10-24 16:18:52 -07:00
parent 80e29ef6b9
commit 47d31cc6f2
3 changed files with 7 additions and 7 deletions

View File

@ -22,6 +22,7 @@ node --version
if [[ -n $SOLANA_VERSION ]]; then if [[ -n $SOLANA_VERSION ]]; then
sh -c "$(curl -sSfL https://release.solana.com/$SOLANA_VERSION/install)" sh -c "$(curl -sSfL https://release.solana.com/$SOLANA_VERSION/install)"
fi fi
export PATH="~/.local/share/solana/install/active_release/bin:$PATH" export PATH=/home/travis/.local/share/solana/install/active_release/bin:"$PATH"
solana --version solana --version
cargo build-bpf --version cargo build-bpf --version

10
Cargo.lock generated
View File

@ -626,13 +626,12 @@ dependencies = [
[[package]] [[package]]
name = "curve25519-dalek" name = "curve25519-dalek"
version = "2.1.0" version = "2.1.0"
source = "git+https://github.com/garious/curve25519-dalek?rev=60efef3553d6bf3d7f3b09b5f97acd54d72529ff#60efef3553d6bf3d7f3b09b5f97acd54d72529ff" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d85653f070353a16313d0046f173f70d1aadd5b42600a14de626f0dfb3473a5"
dependencies = [ dependencies = [
"borsh",
"byteorder", "byteorder",
"digest 0.8.1", "digest 0.8.1",
"rand_core", "rand_core",
"serde",
"subtle 2.2.3", "subtle 2.2.3",
"zeroize", "zeroize",
] ]
@ -640,12 +639,13 @@ dependencies = [
[[package]] [[package]]
name = "curve25519-dalek" name = "curve25519-dalek"
version = "2.1.0" version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/garious/curve25519-dalek?rev=60efef3553d6bf3d7f3b09b5f97acd54d72529ff#60efef3553d6bf3d7f3b09b5f97acd54d72529ff"
checksum = "5d85653f070353a16313d0046f173f70d1aadd5b42600a14de626f0dfb3473a5"
dependencies = [ dependencies = [
"borsh",
"byteorder", "byteorder",
"digest 0.8.1", "digest 0.8.1",
"rand_core", "rand_core",
"serde",
"subtle 2.2.3", "subtle 2.2.3",
"zeroize", "zeroize",
] ]

View File

@ -47,7 +47,6 @@ _ cargo run --manifest-path=utils/test-client/Cargo.toml
# _ git diff --exit-code token-swap/program/inc/token-swap.h # _ git diff --exit-code token-swap/program/inc/token-swap.h
# _ cc token-swap/program/inc/token-swap.h -o target/token-swap.gch # _ cc token-swap/program/inc/token-swap.h -o target/token-swap.gch
# For all BPF programs # For all BPF programs
for Xargo_toml in $(git ls-files -- '*/Xargo.toml'); do for Xargo_toml in $(git ls-files -- '*/Xargo.toml'); do
program_dir=$(dirname "$Xargo_toml") program_dir=$(dirname "$Xargo_toml")