Adjust crate list

This commit is contained in:
Michael Vines
2019-03-11 18:44:45 -07:00
committed by Grimes
parent abdd4f371b
commit a7d8bfdf8b

View File

@ -17,13 +17,15 @@ CRATES=(
keygen keygen
metrics metrics
drone drone
programs/{budget,bpf_loader,native_loader,noop,vote} programs/{budget_api,rewards_api,storage_api,token_api,vote_api}
runtime
programs/{budget,bpf_loader,vote,rewards,storage,token,vote}
vote-signer
core core
fullnode fullnode
genesis genesis
ledger-tool ledger-tool
wallet wallet
runtime
) )
@ -52,7 +54,7 @@ for crate in "${CRATES[@]}"; do
set -x set -x
# TODO: the rocksdb package does not build with the stock rust docker image, # TODO: the rocksdb package does not build with the stock rust docker image,
# so use the solana rust docker image until this is resolved upstream # so use the solana rust docker image until this is resolved upstream
ci/docker-run.sh solanalabs/rust:1.31.0 bash -exc "cd $crate; $cargoCommand" ci/docker-run.sh solanalabs/rust:1.32.0 bash -exc "cd $crate; $cargoCommand"
#ci/docker-run.sh rust bash -exc "cd $crate; $cargoCommand" #ci/docker-run.sh rust bash -exc "cd $crate; $cargoCommand"
) )
done done