Remove bitbucket pipilines

This commit is contained in:
Alexey Kostin 2019-04-29 10:54:55 +03:00
parent a1ac25f82b
commit b34362ff8f

View File

@ -1,18 +0,0 @@
# This is a sample build configuration for Go.
# Check our guides at https://confluence.atlassian.com/x/5Q4SMw for more examples.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
image: golang:1.10
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- PACKAGE_PATH="${GOPATH}/src/bt2qbt/"
- mkdir -pv "${PACKAGE_PATH}"
- tar -cO --exclude-vcs --exclude=bitbucket-pipelines.yml . | tar -xv -C "${PACKAGE_PATH}"
- cd "${PACKAGE_PATH}"
- go get -v
- GOOS=windows GOARCH=386 go build -ldflags "-s -w" -v -o deluge2qbt_i386.exe
- GOOS=windows GOARCH=amd64 go build -ldflags "-s -w" -v -o deluge2qbt_amd64.exe