From 92c0cc310eabb559a7c4a03a398fc8121474137b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BC=D1=98=D0=B0=D0=BD=20=D0=93=D0=B5=D0=BE?= =?UTF-8?q?=D1=80=D0=B3=D0=B8=D0=B5=D0=B2=D1=81=D0=BA=D0=B8?= Date: Sat, 13 Oct 2018 16:10:43 +0200 Subject: [PATCH] add windows support in travis https://blog.travis-ci.com/2018-10-11-windows-early-release --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 090fcae..539247e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ language: rust +sudo: false env: global: @@ -14,8 +15,11 @@ matrix: rust: stable env: TARGET=x86_64-unknown-linux-gnu cache: cargo + - os: windows + rust: stable + env: TARGET=x86_64-pc-windows-msvc + cache: cargo -sudo: false script: - cargo build --target $TARGET