Upgrade to rust 1.30

This commit is contained in:
Michael Vines 2018-10-25 16:48:34 -07:00 committed by Grimes
parent f6c8e1a4bf
commit a340b18b19
4 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
steps: steps:
- command: "ci/docker-run.sh solanalabs/rust:1.29.1 ci/test-stable.sh" - command: "ci/docker-run.sh solanalabs/rust:1.30.0 ci/test-stable.sh"
name: "stable [public]" name: "stable [public]"
env: env:
CARGO_TARGET_CACHE_NAME: "stable" CARGO_TARGET_CACHE_NAME: "stable"

View File

@ -1,6 +1,6 @@
# Note: when the rust version is changed also modify # Note: when the rust version is changed also modify
# ci/buildkite.yml to pick up the new image tag # ci/buildkite.yml to pick up the new image tag
FROM rust:1.29.2 FROM rust:1.30.0
RUN set -x && \ RUN set -x && \
apt update && \ apt update && \

View File

@ -17,7 +17,7 @@ if [[ -z $CHANNEL ]]; then
fi fi
rm -rf usr/ rm -rf usr/
../docker-run.sh solanalabs/rust:1.29.1 \ ../docker-run.sh solanalabs/rust:1.30.0 \
cargo install --path . --root ci/docker-solana/usr cargo install --path . --root ci/docker-solana/usr
cp -f entrypoint.sh usr/bin/solana-entrypoint.sh cp -f entrypoint.sh usr/bin/solana-entrypoint.sh
../../scripts/install-native-programs.sh usr/bin/ ../../scripts/install-native-programs.sh usr/bin/

View File

@ -23,8 +23,8 @@ nightly)
require cargo 1.31.[0-9]+-nightly require cargo 1.31.[0-9]+-nightly
;; ;;
stable) stable)
require rustc 1.29.[0-9]+ require rustc 1.30.[0-9]+
require cargo 1.29.[0-9]+ require cargo 1.30.[0-9]+
;; ;;
*) *)
echo Error: unknown argument: "$1" echo Error: unknown argument: "$1"