From 7476b11874905f1cae661417465022a34366d6eb Mon Sep 17 00:00:00 2001 From: Philipp Wollermann Date: Thu, 19 Mar 2020 14:01:10 +0100 Subject: [PATCH] Remove explicit "set -e" from presubmit.yml (#131) This was made the default in https://github.com/bazelbuild/continuous-integration/pull/957. --- .bazelci/presubmit.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index 8808234a..fdefaa0a 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -3,7 +3,6 @@ validate_config: 1 tasks: ubuntu1804: shell_commands: - - "set -e" - "echo +++ Check go format" - "./check-gofmt.sh `find go -name '*.go'`" - "echo +++ Check go vet" @@ -17,7 +16,6 @@ tasks: platform: ubuntu1804 name: "go build / test" shell_commands: - - "set -e" - "echo +++ Running go build" - "go build ./..." - "echo +++ Running go test"