dtparse/.travis.yml

25 lines
542 B
YAML
Raw Normal View History

2018-06-08 23:37:31 -04:00
language: rust
2018-06-08 23:53:57 -04:00
python:
- '3.5'
2018-06-08 23:37:31 -04:00
env:
global:
- CRATE_NAME=dtparse
matrix:
include:
# Tests will only run on nightly, and where I can install Python/Dateutil
# Should still build on stable though
- env: TARGET=aarch64-unknown-linux-gnu
rust: nightly
- env: TARGET=x86_64-unknown-linux-gnu
rust: nightly
- env: TARGET=x86_64-unknown-linux-musl
rust: nightly
before_install:
2018-06-08 23:38:54 -04:00
- set -e
2018-06-08 23:44:50 -04:00
- pip install --user python-dateutil
2018-06-08 23:37:31 -04:00
- rustup self update