Use docker rust docker image to avoid rocksdb build errors

This commit is contained in:
Michael Vines 2019-01-07 21:46:55 -08:00
parent 789ee9f138
commit 1490c42d9f
1 changed files with 4 additions and 1 deletions

View File

@ -50,7 +50,10 @@ for crate in "${CRATES[@]}"; do
# TODO: Ensure the published version matches the contents of BUILDKITE_TAG
(
set -x
ci/docker-run.sh rust bash -exc "cd $crate; $cargoCommand"
# 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
ci/docker-run.sh solanalabs/rust:1.31.0 bash -exc "cd $crate; $cargoCommand"
#ci/docker-run.sh rust bash -exc "cd $crate; $cargoCommand"
)
done