From debf7962f8451e6d74c48509bcad4de4bc345a56 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Wed, 29 May 2019 14:35:02 +0100 Subject: [PATCH] Update emojis, add go 1.11, fix docker image names --- .buildkite/pipeline.yaml | 48 ++++++++++++++++++++++++++++------------ 1 file changed, 34 insertions(+), 14 deletions(-) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index a48eaaf1c..0a228879e 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -1,30 +1,50 @@ steps: - command: - "./build.sh" - label: "\U0001F528 Build - Go 1.12" + label: ":hammer-and-wrench: Build / :go: 1.11" env: GOGC: "400" DENDRITE_LINT_DISABLE_GC: "1" plugins: - docker#v3.0.1: - image: "1.12-alpine:latest" - - - command: - - "./scripts/find-lint.sh" - label: "\U0001F9F9 Lint - Go 1.12" - env: - GOGC: "400" - DENDRITE_LINT_DISABLE_GC: "1" - plugins: - - docker#v3.0.1: - image: "1.12-alpine:latest" + image: "golang:1.11-alpine" - command: - "go test ./..." - label: "\U0001F9EA Unit tests - Go 1.12" + label: ":female-scientist: Unit tests / :go: 1.11" env: GOGC: "400" DENDRITE_LINT_DISABLE_GC: "1" plugins: - docker#v3.0.1: - image: "1.12-alpine:latest" + image: "golang:1.11-alpine" + + - command: + - "./build.sh" + label: ":hammer-and-wrench: Build / :go: 1.12" + env: + GOGC: "400" + DENDRITE_LINT_DISABLE_GC: "1" + plugins: + - docker#v3.0.1: + image: "golang:1.12-alpine" + + - command: + - "go test ./..." + label: ":female-scientist: Unit tests / :go: 1.12" + env: + GOGC: "400" + DENDRITE_LINT_DISABLE_GC: "1" + plugins: + - docker#v3.0.1: + image: "golang:1.12-alpine" + + - command: + - "./scripts/find-lint.sh" + label: ":lower_left_crayon: Lint / :go: 1.12" + env: + GOGC: "400" + DENDRITE_LINT_DISABLE_GC: "1" + plugins: + - docker#v3.0.1: + image: "golang:1.12-alpine"