You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by bo...@apache.org on 2020/01/22 21:08:29 UTC

[beam] branch release-2.19.0 updated: [BEAM-8992] ignore Go Vet failures. (#10661)

This is an automated email from the ASF dual-hosted git repository.

boyuanz pushed a commit to branch release-2.19.0
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/release-2.19.0 by this push:
     new 59bb408  [BEAM-8992]  ignore Go Vet failures. (#10661)
     new 4301c16  Merge pull request #10663 from boyuanzz/cherry-pick
59bb408 is described below

commit 59bb40835f5f42328f81e0165b7ab8c7368e64c1
Author: Robert Burke <lo...@users.noreply.github.com>
AuthorDate: Wed Jan 22 11:47:02 2020 -0800

    [BEAM-8992]  ignore Go Vet failures. (#10661)
    
    (cherry picked from commit 8f82927b77112349616c83238850ea0feccbc70a)
---
 sdks/go/examples/build.gradle | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/sdks/go/examples/build.gradle b/sdks/go/examples/build.gradle
index f7299f1..c040dd5 100644
--- a/sdks/go/examples/build.gradle
+++ b/sdks/go/examples/build.gradle
@@ -69,4 +69,9 @@ golang {
     go 'build -o ./build/bin/${GOOS}_${GOARCH}/wordcount github.com/apache/beam/sdks/go/examples/wordcount'
     go 'build -o ./build/bin/${GOOS}_${GOARCH}/yatzy github.com/apache/beam/sdks/go/examples/yatzy'
   }
+
+  // Ignore spurious vet errors during check for [BEAM-8992].
+  goVet {
+    continueOnFailure = true
+  }
 }