From 1e9a0c3bd1078bbc82cfc42e0e3445c383cbb9df Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Fri, 8 Jun 2018 23:37:31 -0400 Subject: [PATCH] First attempt at .travis.yml --- .travis.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..894e118 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +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 -eu + - pip install dateutil + - rustup self update +