From 899858f84d3fa6022ee52b2508f4e8b2889369d0 Mon Sep 17 00:00:00 2001 From: Brian de Alwis Date: Mon, 11 Jan 2021 21:55:40 -0500 Subject: [PATCH 1/2] travis should build on all branches --- .travis.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7184dde065c..a6ebc8e0fda 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,10 +7,6 @@ go_import_path: /skaffold git: submodules: false -branches: - only: - - master - _integration_test: &integration_test os: linux language: minimal From fb42a293d174dda939103bb21b93c6a70c9d2479 Mon Sep 17 00:00:00 2001 From: Brian de Alwis Date: Wed, 13 Jan 2021 14:08:03 -0500 Subject: [PATCH 2/2] use travis blocklists --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index a6ebc8e0fda..64ffe167d60 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,12 @@ language: go go: "1.15.x" go_import_path: /skaffold +# skip release branches and version tags +branches: + except: + - /^release\/.*/ + - /^v\d+\..*$/ + git: submodules: false