chrono/.travis.yml

38 lines
907 B
YAML
Raw Normal View History

2014-08-26 16:30:00 +00:00
language: rust
sudo: false
rust:
# 1.13.0 is the earliest version that Serde 1.0 tests, so we follow suit
2017-02-03 07:30:17 +00:00
- 1.13.0
- stable
- beta
- nightly
2014-08-26 16:30:00 +00:00
os:
- linux
- osx
matrix:
allow_failures:
- rust: nightly
env: CLIPPY=n
include:
- rust: nightly
env: CLIPPY=y
2014-04-01 17:14:57 +00:00
env:
global:
2014-08-26 16:30:00 +00:00
- LD_LIBRARY_PATH: /usr/local/lib
- CLIPPY: n
2019-08-16 09:35:56 +00:00
install:
2019-08-16 20:04:09 +00:00
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then source $HOME/.nvm/nvm.sh; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then nvm install 10; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then nvm use 10; fi
- if [ "$TRAVIS_RUST_VERSION" != "1.13.0" ]; then curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh; fi
script: ./ci/travis.sh
notifications:
email: false
irc:
channels:
- "irc.mozilla.org#chronotope"
template:
- "%{repository_slug}/%{branch} (%{commit} - %{author}): %{message}"
skip_join: true