deb-simple/.drone.yml

30 lines
705 B
YAML
Raw Normal View History

2018-10-14 08:02:23 +00:00
workspace:
base: /go
pipeline:
2018-10-14 08:08:44 +00:00
dependencies:
2018-10-14 08:02:23 +00:00
image: golang:latest
commands:
2018-10-14 08:08:44 +00:00
- mkdir /go/bin
- curl https://glide.sh/get | sh
2018-10-14 08:14:57 +00:00
- cd src/gitea.meow.tf/tyler/deb-simple
2018-10-14 08:08:44 +00:00
- glide install
build-i386:
image: golang:latest
group: build
commands:
2018-10-14 08:12:25 +00:00
- ls /go/src
2018-10-14 08:08:44 +00:00
- mkdir -p build/i386
- GOOS=linux GOARCH=386 go build -o build/i386/deb-simple
build-amd64:
image: golang:latest
group: build
commands:
- mkdir -p build/amd64
- go build -o build/amd64/deb-simple
build-armv7:
image: golang:latest
group: build
commands:
- mkdir -p build/armv7
- GOOS=linux GOARCH=arm GOARM=7 go build -o build/armv7/deb-simple