From c1b07d0f21c5d11d380a3330ad02ffdeaf653d11 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 14 Sep 2018 13:37:47 -0700 Subject: [PATCH] Upgrade rust stable to 1.29 --- ci/buildkite.yml | 2 +- ci/docker-rust/Dockerfile | 2 +- ci/version-check.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/buildkite.yml b/ci/buildkite.yml index 0be1cc1a4c..81547276b9 100644 --- a/ci/buildkite.yml +++ b/ci/buildkite.yml @@ -1,5 +1,5 @@ steps: - - command: "ci/docker-run.sh solanalabs/rust:1.28.0 ci/test-stable.sh" + - command: "ci/docker-run.sh solanalabs/rust:1.29.0 ci/test-stable.sh" name: "stable [public]" env: CARGO_TARGET_CACHE_NAME: "stable" diff --git a/ci/docker-rust/Dockerfile b/ci/docker-rust/Dockerfile index 0ccd3f99a3..88cb4fe47c 100644 --- a/ci/docker-rust/Dockerfile +++ b/ci/docker-rust/Dockerfile @@ -1,6 +1,6 @@ # Note: when the rust version (1.28) is changed also modify # ci/buildkite.yml to pick up the new image tag -FROM rust:1.28 +FROM rust:1.29.0 RUN set -x && \ apt update && \ diff --git a/ci/version-check.sh b/ci/version-check.sh index bf72822e3d..1839498435 100755 --- a/ci/version-check.sh +++ b/ci/version-check.sh @@ -23,8 +23,8 @@ nightly) require cargo 1.29.[0-9]+-nightly ;; stable) - require rustc 1.28.[0-9]+ - require cargo 1.28.[0-9]+ + require rustc 1.29.[0-9]+ + require cargo 1.29.[0-9]+ ;; *) echo Error: unknown argument: "$1"