diff --git a/.travis.yml b/.travis.yml index b67e3bf..35b04d5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,27 +1,5 @@ -lang: c -after_success: | - [ $TRAVIS_BRANCH = master ] && - [ $TRAVIS_PULL_REQUEST = false ] && - cargo doc && - echo "" > target/doc/index.html && - sudo pip install ghp-import && - ghp-import -n target/doc && - git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages - -env: - matrix: - - CHANNEL='stable' - - CHANNEL='beta' - - CHANNEL='nightly' - global: - - secure: SZSxNqg9wiGx8EnJhifJ2kb/aCRcLim9TzTQyfurPqd8qVGkDOeVjTtbs+VTxLVXYtMJAz+YYnrQDwsu8kc/uYpQajU+gRMqNGEP5gNj3Ha5iNGDasAS6piIHQSMROayZ+D9g22nlGnjk8t9eZtLHC/Z8IWMCnjcIHvqMFY6cgI= - -install: - - curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh > ./rustup.sh - - chmod +x ./rustup.sh - - ./rustup.sh --yes - -script: - - multirust default $CHANNEL - - cargo build - - if [ $CHANNEL = 'nightly' ] ; then cargo test ; fi +language: rust +rust: + - stable + - beta + - nightly diff --git a/tests/test.rs b/tests/test.rs index 5e0abb7..dd13c9d 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -1,5 +1,3 @@ -#![feature(proc_macro)] - #[macro_use] extern crate serde_derive;