From 50becbd67a08ab88e663af0c45e2e51b49d9ad1f Mon Sep 17 00:00:00 2001 From: Morgan Bauer Date: Wed, 25 Jul 2018 20:55:14 -0700 Subject: [PATCH 1/2] remove from travis integration-tests which are now running in prow --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 39c6c0477fd..4a6d66ba242 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,7 @@ jobs: make verify-docs else echo "Running full build" - make verify build svcat build-integration build-e2e test-integration + make verify build svcat build-integration build-e2e fi env: GO_VERSION=1.10 # Doc Site svc-cat.io From b75075c6f9447e039887740f1b5b1c0fd48c57be Mon Sep 17 00:00:00 2001 From: Morgan Bauer Date: Thu, 26 Jul 2018 09:11:16 -0700 Subject: [PATCH 2/2] document why we build what we're building --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4a6d66ba242..8393d3d7a0f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,6 +40,9 @@ jobs: make verify-docs else echo "Running full build" + # make sure code quality is good and proper + # generate the output binaries for server and client + # ensure the tests build make verify build svcat build-integration build-e2e fi env: GO_VERSION=1.10