22 lines
404 B
YAML
22 lines
404 B
YAML
workspace:
|
|
base: /go
|
|
path: src/deadbeef.codes/steven/mandelbrot
|
|
|
|
pipeline:
|
|
build:
|
|
image: golang:latest
|
|
environment:
|
|
- GOOS=linux
|
|
- GOARCH=arm
|
|
- GOARM=7
|
|
commands:
|
|
- go get
|
|
- go build
|
|
- pwd
|
|
|
|
publish:
|
|
image: plugins/docker
|
|
repo: deadbeef.codes:5000/mandelmap
|
|
registry: deadbeef.codes:5000
|
|
auto_tag: true
|
|
auto_tag_suffix: linux-rpi3 |