diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2019-05-02 15:03:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-02 15:03:18 +0000 |
commit | b2acdd23cf48c5d1ebf1324ce60966584dac115e (patch) | |
tree | 6a85a1ec6b78e6904a9f6a465583b00cac8b1008 | |
parent | Merge pull request #97 from svenstaro/dependabot/cargo/rstest-9f2ac13 (diff) | |
parent | Explicitly specify empty env (diff) | |
download | miniserve-b2acdd23cf48c5d1ebf1324ce60966584dac115e.tar.gz miniserve-b2acdd23cf48c5d1ebf1324ce60966584dac115e.zip |
Merge pull request #98 from KSXGitHub/new-ci-config-without-global-versions
Move 'rust: [stable, beta]' into 'matrix.includes'
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 42c4136..b3eb85b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,8 @@ language: rust dist: xenial -rust: - - stable - - beta - - nightly +rust: [] +env: [] addons: apt: @@ -18,8 +16,16 @@ addons: matrix: allow_failures: - rust: stable + env: [] - rust: beta + env: [] include: + - rust: stable + env: [] + - rust: beta + env: [] + - rust: nightly + env: [] - rust: nightly env: - TARGET=x86_64-unknown-linux-musl |