From b30fcde43753e4874f94cb096d73a46aafb65835 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 5 Dec 2019 09:47:42 +0100 Subject: [PATCH] Disable static check and lint for now --- .drone.star | 56 ++++++++++++++++++++++++++--------------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/.drone.star b/.drone.star index 1c01bd68c3..f8fba5a71f 100644 --- a/.drone.star +++ b/.drone.star @@ -46,34 +46,34 @@ def testing(ctx): }, ], }, - { - 'name': 'staticcheck', - 'image': 'webhippie/golang:1.13', - 'pull': 'always', - 'commands': [ - 'make staticcheck', - ], - 'volumes': [ - { - 'name': 'gopath', - 'path': '/srv/app', - }, - ], - }, - { - 'name': 'lint', - 'image': 'webhippie/golang:1.13', - 'pull': 'always', - 'commands': [ - 'make lint', - ], - 'volumes': [ - { - 'name': 'gopath', - 'path': '/srv/app', - }, - ], - }, + # { + # 'name': 'staticcheck', + # 'image': 'webhippie/golang:1.13', + # 'pull': 'always', + # 'commands': [ + # 'make staticcheck', + # ], + # 'volumes': [ + # { + # 'name': 'gopath', + # 'path': '/srv/app', + # }, + # ], + # }, + # { + # 'name': 'lint', + # 'image': 'webhippie/golang:1.13', + # 'pull': 'always', + # 'commands': [ + # 'make lint', + # ], + # 'volumes': [ + # { + # 'name': 'gopath', + # 'path': '/srv/app', + # }, + # ], + # }, { 'name': 'build', 'image': 'webhippie/golang:1.13',