Reduce number of build-jobs

Currently we have build times up to 2 hours. That's because travis does
not execute all builds in parallel, but some in sequence (afaik 4 are
run in parallel).

Because of that, we have build times up to 2 hours.

By removing the builds for 1.21 (which is old, 1.24 came out 3 days ago)
and for beta and nightly, we reduce the number of jobs for each build to
3 and thus the overall build time, hopefully.
This commit is contained in:
Matthias Beyer 2018-02-18 20:45:20 +01:00
parent 3341e3640c
commit 82aef29d45

View file

@ -8,16 +8,9 @@ dist:
language: rust
rust:
- 1.21.0
- 1.22.1
- 1.23.0
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
cache:
cargo: true