Pārlūkot izejas kodu

CI: Bump minimum supported Rust version to 1.34.2

Johannes Hofmann 6 gadus atpakaļ
vecāks
revīzija
bc858ab6da
2 mainītis faili ar 6 papildinājumiem un 16 dzēšanām
  1. 2
    7
      .appveyor.yml
  2. 4
    9
      .travis.yml

+ 2
- 7
.appveyor.yml Parādīt failu

@@ -8,20 +8,15 @@ environment:
8 8
   matrix:
9 9
     - channel: nightly
10 10
       target: x86_64-pc-windows-msvc
11
-      cargoflags: --no-default-features
12 11
     - channel: nightly
13 12
       target: x86_64-pc-windows-gnu
14
-      cargoflags: --no-default-features
15 13
     - channel: nightly
16 14
       target: i686-pc-windows-gnu
17
-      cargoflags: --no-default-features
18 15
     - channel: stable
19 16
       target: x86_64-pc-windows-msvc
20
-      cargoflags: --no-default-features
21 17
     - channel: stable
22 18
       target: i686-pc-windows-msvc
23
-      cargoflags: --no-default-features
24
-    - channel: 1.27.2
19
+    - channel: 1.34.2
25 20
       target: x86_64-pc-windows-msvc
26 21
 
27 22
 install:
@@ -41,4 +36,4 @@ build: false
41 36
 
42 37
 test_script:
43 38
   - cargo test --verbose
44
-  - cargo test --verbose %cargoflags%
39
+  - cargo test --verbose --no-default-features

+ 4
- 9
.travis.yml Parādīt failu

@@ -6,14 +6,9 @@ rust:
6 6
   - stable
7 7
   - beta
8 8
   - nightly
9
-  - 1.27.2
9
+  - 1.34.2
10 10
 script:
11 11
   - |
12
-      if [ "$TRAVIS_RUST_VERSION" == "1.27.2" ]; then
13
-        cargo test --verbose;
14
-        cargo doc --verbose --no-deps;
15
-      else
16
-        cargo test --verbose;
17
-        cargo test --verbose --no-default-features;
18
-        cargo doc --verbose;
19
-      fi
12
+      cargo test --verbose;
13
+      cargo test --verbose --no-default-features;
14
+      cargo doc --verbose;