From commits-return-1390-archive-asf-public=cust-asf.ponee.io@yetus.apache.org Fri Oct 18 19:07:45 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id E6341180680 for ; Fri, 18 Oct 2019 21:07:44 +0200 (CEST) Received: (qmail 34446 invoked by uid 500); 18 Oct 2019 19:07:44 -0000 Mailing-List: contact commits-help@yetus.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@yetus.apache.org Delivered-To: mailing list commits@yetus.apache.org Received: (qmail 34372 invoked by uid 99); 18 Oct 2019 19:07:44 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Oct 2019 19:07:44 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id A27CB80944; Fri, 18 Oct 2019 19:07:43 +0000 (UTC) Date: Fri, 18 Oct 2019 19:07:46 +0000 To: "commits@yetus.apache.org" Subject: [yetus] 03/04: YETUS-916. upgrade golangci-lint and prototool; rm go cache (#74) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: busbey@apache.org In-Reply-To: <157142566314.21378.1969829326017533874@gitbox.apache.org> References: <157142566314.21378.1969829326017533874@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: yetus X-Git-Refname: refs/heads/YETUS-920 X-Git-Reftype: branch X-Git-Rev: a4d589d20b445d0099f09cd0ac9ad9fa1c11b162 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20191018190743.A27CB80944@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. busbey pushed a commit to branch YETUS-920 in repository https://gitbox.apache.org/repos/asf/yetus.git commit a4d589d20b445d0099f09cd0ac9ad9fa1c11b162 Author: Allen Wittenauer AuthorDate: Mon Sep 30 08:58:18 2019 -0700 YETUS-916. upgrade golangci-lint and prototool; rm go cache (#74) Signed-off-by: Sean Busbey (cherry picked from commit b067f8ec5e34a384055aa00f39f4344b9ab710aa) --- precommit/src/main/shell/test-patch-docker/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/precommit/src/main/shell/test-patch-docker/Dockerfile b/precommit/src/main/shell/test-patch-docker/Dockerfile index 6b4eee9..9e37347 100644 --- a/precommit/src/main/shell/test-patch-docker/Dockerfile +++ b/precommit/src/main/shell/test-patch-docker/Dockerfile @@ -261,10 +261,10 @@ RUN add-apt-repository -y ppa:longsleep/golang-backports \ && rm -rf /var/lib/apt/lists/* RUN go get -u github.com/mgechev/revive \ && go get -u github.com/mrtazz/checkmake \ - && (GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.16.0) \ - && (GO111MODULE=on go get github.com/uber/prototool/cmd/prototool@6a473a4f1d86e7c8ff6a844d7dc4f7c3f6207a3f) \ + && (GO111MODULE=on go get github.com/uber/prototool/cmd/prototool@7df3b957ffe3d09dc57fe4e1eb96694614db8c7a) \ + && (GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.19.1) \ && mv /root/go/bin/* /usr/local/bin \ - && rm -rf /root/go + && rm -rf /root/go /root/.cache/go-build #### # YETUS CUT HERE