From 47600fe218727c3e221517a8c6a5da96be0934b5 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, 20 Oct 2018 16:38:07 +0200 Subject: [PATCH] Revert "test a simplified travis.yml" This reverts commit d0516ecb2151e2723c737aa9a4d91fbf9d3a79b2. nope, I do need the TARGET variable to know where the build goes anyway --- .travis.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 99678b6..b3353de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,10 +7,15 @@ env: global: - PROJECT_NAME=http-server -os: - - linux - - osx - - windows +matrix: + include: + - os: osx + env: TARGET=x86_64-apple-darwin + - os: linux + env: TARGET=x86_64-unknown-linux-gnu + - os: windows + env: TARGET=x86_64-pc-windows-msvc + script: - cargo build --target $TARGET