diff options
author | Andrei Vagin <avagin@google.com> | 2020-03-25 11:20:24 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-03-25 11:21:34 -0700 |
commit | 2e09f2bdce11d5f303333c68af4272abb62b7885 (patch) | |
tree | fe671af92f12fc4a1400e51ed971155d5b259e18 | |
parent | e7fbf6949514f1cf239437dcead4ceed5aac029e (diff) |
travis: exclude copybara branches
When copybara migrates changes, it creates a new branch and then creates a
pull-requests which is based on this branch. In this case, travis-ci
triggers build twice for the branch and for the pull-request.
PiperOrigin-RevId: 302930634
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index a2a260538..acbd3d61b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,3 +17,7 @@ matrix: script: - uname -a - make DOCKER_RUN_OPTIONS="" BAZEL_OPTIONS="build runsc:runsc" bazel && $RUNSC_PATH --alsologtostderr --network none --debug --TESTONLY-unsafe-nonroot=true --rootless do ls +branches: + except: + # Skip copybara branches. + - /^test\/cl.*$/ |