From d9f045c85143853312bd1f867f4f861eebdf71ed Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Thu, 10 Oct 2019 01:14:15 +0800 Subject: [PATCH] ignore lint Signed-off-by: Bo-Yi Wu --- .drone.yml | 9 --------- pipeline.libsonnet | 28 ++++++++++++++-------------- 2 files changed, 14 insertions(+), 23 deletions(-) diff --git a/.drone.yml b/.drone.yml index 97dc91e..962113d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -16,15 +16,6 @@ steps: - name: gopath path: /go -- name: lint - pull: always - image: golang:1.13 - commands: - - make lint - volumes: - - name: gopath - path: /go - - name: misspell pull: always image: golang:1.13 diff --git a/pipeline.libsonnet b/pipeline.libsonnet index 3b4eb30..6887a75 100644 --- a/pipeline.libsonnet +++ b/pipeline.libsonnet @@ -21,20 +21,20 @@ }, ], }, - { - name: 'lint', - image: 'golang:1.13', - pull: 'always', - commands: [ - 'make lint', - ], - volumes: [ - { - name: 'gopath', - path: '/go', - }, - ], - }, + // { + // name: 'lint', + // image: 'golang:1.13', + // pull: 'always', + // commands: [ + // 'make lint', + // ], + // volumes: [ + // { + // name: 'gopath', + // path: '/go', + // }, + // ], + // }, { name: 'misspell', image: 'golang:1.13',