From d802047c47e04881d4541bcb7297795dce0730df Mon Sep 17 00:00:00 2001 From: Sarah Funkhouser <147884153+golanglemonade@users.noreply.github.com> Date: Mon, 26 Aug 2024 18:38:59 -0500 Subject: [PATCH] pipeline update Signed-off-by: Sarah Funkhouser <147884153+golanglemonade@users.noreply.github.com> --- .buildkite/pipeline.yaml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index bedb968..0c9c60c 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -11,24 +11,20 @@ steps: key: "lint" plugins: - docker#v5.11.0: - image: "registry.hub.docker.com/golangci/golangci-lint:v1.60.3" - command: ["golangci-lint", "run", "-v", "--timeout", "10m", "--config", ".golangci.yaml", "--concurrency", "0"] + image: "registry.hub.docker.com/golangci/golangci-lint:latest-alpine" + command: ["golangci-lint", "run", "-v"] + always-pull: true environment: - "GOTOOLCHAIN=auto" - label: ":golang: go test" key: "go_test" - retry: - automatic: - - exit_status: "*" - limit: 2 - cancel_on_build_failing: true plugins: - docker#v5.11.0: image: golang:1.23.0 command: ["go", "test", "-coverprofile=coverage.out", "./..."] artifact_paths: ["coverage.out"] - group: ":closed_lock_with_key: Security Checks" - depends_on: "go_test" + depends_on: "tests" key: "security" steps: - label: ":closed_lock_with_key: gosec"