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"