summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2019-01-14 03:28:56 +0100
committerBert Belder <bertbelder@gmail.com>2019-01-14 05:03:04 +0100
commiteab457ef957ff838c7db5f9549a8145bf405809d (patch)
tree839d94fe51d4150588a30fa03944ca57c949f235 /.travis.yml
parent3c1a0ad19e7b044bb40f979ec4c5f81bf39dec4b (diff)
ci: upgrade rust to version 1.31.1
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index b946708cb..50fd8c8ac 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,9 +32,9 @@ install:
# Install Rust.
# TODO(ry) Include rustc in third_party.
# https://github.com/denoland/deno/issues/386
- if [ ! $(rustc --version | grep 1.30.0) ]; then
- curl -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.30.0
- rustup default 1.30.0
+ if [ ! $(rustc --version | grep 1.31.1) ]; then
+ curl -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.31.1
+ rustup default 1.31.1
fi
rustc --version
cargo --version