]> git.proxmox.com Git - cargo.git/commitdiff
Bump CI minimum version to 1.31 so that `trim_end` is available.
authorEric Huss <eric@huss.org>
Wed, 2 Jan 2019 20:11:42 +0000 (12:11 -0800)
committerEric Huss <eric@huss.org>
Wed, 2 Jan 2019 20:11:42 +0000 (12:11 -0800)
.travis.yml
appveyor.yml

index a421a7b933402aad4af4efc0df8c8221617af5c1..49b353279509d4bc86f7499fd40d7c3135c9bb77 100644 (file)
@@ -36,7 +36,7 @@ matrix:
     # increased every 6 weeks or so when the first PR to use a new feature.
     - env: TARGET=x86_64-unknown-linux-gnu
            ALT=i686-unknown-linux-gnu
-      rust: 1.28.0
+      rust: 1.31.0
       script:
         - rustup toolchain install nightly
         - cargo +nightly generate-lockfile -Z minimal-versions
index 282633ee07121804dae5e806ad151da856ef2caa..6a2e257850bb2f1a8f8e6ed2b680b03b4e8088fc 100644 (file)
@@ -11,7 +11,7 @@ install:
   - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
   - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly
   - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
-  - if defined MINIMAL_VERSIONS rustup toolchain install 1.28.0
+  - if defined MINIMAL_VERSIONS rustup toolchain install 1.31.0
   - if defined OTHER_TARGET rustup target add %OTHER_TARGET%
   - rustc -V
   - cargo -V
@@ -25,5 +25,5 @@ test_script:
   # we don't have ci time to run the full `cargo test` with `minimal-versions` like
   # - if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo +stable test
   # so we just run `cargo check --tests` like
-  - if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo +1.28.0 check --tests
+  - if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo +1.31.0 check --tests
   - if NOT defined MINIMAL_VERSIONS cargo test