dockron/.drone.yml

88 lines
1.6 KiB
YAML
Raw Normal View History

2019-06-07 22:55:21 +00:00
kind: pipeline
name: test
2019-06-07 23:29:53 +00:00
workspace:
base: /go/src/dockron
steps:
- name: build
image: golang:1.11
commands:
- go get -u github.com/golang/dep/cmd/dep
- make build
---
kind: pipeline
name: publish
depends_on:
- test
trigger:
event:
- push
- tag
refs:
- refs/heads/master
- refs/tags/v*
2019-06-07 23:19:03 +00:00
workspace:
2019-06-07 23:19:56 +00:00
base: /go/src/dockron
2019-06-07 22:40:04 +00:00
2019-06-07 22:55:21 +00:00
steps:
- name: build
image: golang:1.11
commands:
- go get -u github.com/golang/dep/cmd/dep
2019-06-07 23:15:50 +00:00
- make build-all-static
2019-06-07 22:55:21 +00:00
2019-06-07 23:29:53 +00:00
- name: push image - amd64
2019-06-07 22:40:04 +00:00
image: plugins/docker
settings:
2019-06-07 22:43:24 +00:00
repo: iamthefij/dockron
2019-06-07 23:29:53 +00:00
auto_tag: true
auto_tag_suffix: linux-amd64
2019-06-07 22:40:04 +00:00
username:
from_secret: docker_username
password:
from_secret: docker_password
2019-06-07 23:29:53 +00:00
- name: push image - arm
2019-06-07 22:40:04 +00:00
image: plugins/docker
settings:
2019-06-07 22:43:24 +00:00
repo: iamthefij/dockron
2019-06-07 23:29:53 +00:00
auto_tag: true
auto_tag_suffix: linux-arm
2019-06-07 22:40:04 +00:00
username:
from_secret: docker_username
password:
from_secret: docker_password
build_args:
- ARCH=arm
- REPO=arm32v6
2019-06-07 23:29:53 +00:00
- name: push image - arm64
image: plugins/docker
settings:
repo: iamthefij/dockron
auto_tag: true
auto_tag_suffix: linux-arm64
username:
from_secret: docker_username
password:
from_secret: docker_password
build_args:
- ARCH=arm
- REPO=arm32v6
- name: publish manifest
image: plugins/manifest
settings:
spec: manifest.tmpl
auto_tag: true
ignore_missing: true
username:
from_secret: docker_username
password:
from_secret: docker_password