projector/bitbucket-pipelines.yml

28 lines
1006 B
YAML
Raw Normal View History

# Template Go (Golang) build
# This template allows you to validate your Go (Golang) code.
# The workflow allows running tests, build and code linting on the default branch.
image: golang:1.15
pipelines:
default:
- parallel:
2021-03-12 10:13:12 +00:00
- step:
name: Lint code
image: golangci/golangci-lint:v1.31.0
script:
- golangci-lint run -v
- step:
name: Test and Build
script:
2021-03-12 10:11:09 +00:00
# - mkdir test-reports
# - 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
2021-03-12 09:14:33 +00:00
- mkdir ./build
2021-03-12 10:15:35 +00:00
- go version
2021-03-12 10:11:09 +00:00
- go mod tidy
- go build -a -v -o ./build/ .
2021-03-12 11:03:14 +00:00
- curl -X POST --user "${BITBUCKET_USERNAME}:${BITBUCKET_APP_PASSWORD}" "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"./build/projector"