1
0
mirror of https://github.com/bspeice/dtparse synced 2024-09-19 16:31:32 -04:00
dtparse/.travis.yml
2018-06-08 23:44:50 -04:00

23 lines
524 B
YAML

language: rust
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:
- set -e
- pip install --user python-dateutil
- rustup self update