From daa41ceeb5623c36b68ab0e82cf071b026bf5103 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Fri, 12 Mar 2021 09:14:33 +0000 Subject: [PATCH] fix pipeline: attempt 1 --- bitbucket-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 6f9ace4..c8e1418 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -15,7 +15,8 @@ pipelines: - go get -u github.com/jstemmer/go-junit-report - go test tests/* -v 2>&1 | go-junit-report > test-reports/report.xml # Build compiles the packages - - go build -o ./build/ ./* + - mkdir ./build + - go build -o ./build/ ./*.go - step: name: Lint code image: golangci/golangci-lint:v1.31.0