From e7d29590cd718e68fb2397c0416f0e7eabe884da Mon Sep 17 00:00:00 2001 From: Adam Eijdenberg Date: Mon, 3 Jun 2019 17:47:51 +1000 Subject: [PATCH] Fix travis so that if "configure" fails, it doesn't try to run make --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c5cdc33a..ac0f582a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,9 +8,7 @@ install: - chmod +x dep - mv dep $GOPATH/bin/dep script: - - ./configure - # Run tests - - make test + - ./configure && make test sudo: false notifications: email: false