From 1490c42d9f5e9642575d43c3345fa392acd6b791 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 7 Jan 2019 21:46:55 -0800 Subject: [PATCH] Use docker rust docker image to avoid rocksdb build errors --- ci/publish-crate.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/publish-crate.sh b/ci/publish-crate.sh index d56f95d17..604471e28 100755 --- a/ci/publish-crate.sh +++ b/ci/publish-crate.sh @@ -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