From 3f2f3acf3700705187f2d614730a7c96414e5743 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Gonz=C3=A1lez?= Date: Fri, 2 Mar 2018 21:59:39 +0100 Subject: [PATCH] Remove unneeded/repeated Travis steps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some steps are now being run with Go tip and not in all the different versions, there were also moved to their own block so they will fail fast and in the mean time the unit test for the different versions can start. Also, "make docs" was removed because it's already being done by "make" without any argument. Fixes #1400. Signed-off-by: Álex González --- .travis.yml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 27c4b220..92ffa2c1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,23 +32,18 @@ jobs: - make .gitvalidation - make gofmt - make lint - - make testunit - - make docs - - make - go: 1.8.x + go: tip - stage: Build and Verify script: - - make .gitvalidation - - make gofmt - - make lint - make testunit - - make docs + - make + go: 1.8.x + - script: + - make testunit - make go: 1.9.x - script: - - make .gitvalidation - make testunit - - make docs - make go: tip - stage: Integration Test