Update travis config to test on stable (#273)

This commit is contained in:
Taiki Endo
2019-07-24 08:25:03 -07:00
committed by Carl Lerche
parent e25b75a28e
commit ecdde1a996
+3 -4
View File
@@ -3,8 +3,7 @@ dist: trusty
language: rust language: rust
services: docker services: docker
sudo: required sudo: required
#rust: stable rust: stable
rust: beta # we need 1.36, which is still beta
env: env:
global: global:
@@ -20,7 +19,7 @@ matrix:
# #
# This job will also build and deploy the docs to gh-pages. # This job will also build and deploy the docs to gh-pages.
- env: TARGET=x86_64-unknown-linux-gnu - env: TARGET=x86_64-unknown-linux-gnu
#rust: 1.36.0 (not stable yet) rust: 1.36.0
after_success: after_success:
- | - |
pip install 'travis-cargo<0.2' --user && pip install 'travis-cargo<0.2' --user &&
@@ -44,7 +43,7 @@ matrix:
- env: EXTRA_ARGS="--features either" - env: EXTRA_ARGS="--features either"
# WASM support # WASM support
- rust: beta - rust: stable
script: script:
- rustup target add wasm32-unknown-unknown - rustup target add wasm32-unknown-unknown
- cargo build --target=wasm32-unknown-unknown - cargo build --target=wasm32-unknown-unknown