dockron/.drone.yml

135 lines
1.9 KiB
YAML
Raw Normal View History

2019-06-07 22:55:21 +00:00
kind: pipeline
name: test
workspace:
base: /go
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 version
- go env
- go get -u github.com/golang/dep/cmd/dep
- make build
---
2019-06-07 22:40:04 +00:00
kind: pipeline
name: linux-amd64
2019-06-07 22:55:21 +00:00
depends_on:
- test
2019-06-07 22:40:04 +00:00
trigger:
event:
- push
- tag
2019-06-07 22:43:24 +00:00
refs:
- refs/heads/master
- refs/tags/v*
2019-06-07 22:40:04 +00:00
steps:
- name: build
image: plugins/docker
settings:
2019-06-07 22:43:24 +00:00
repo: iamthefij/dockron
2019-06-07 22:55:21 +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
---
kind: pipeline
name: linux-arm
2019-06-07 22:55:21 +00:00
depends_on:
- test
2019-06-07 22:40:04 +00:00
trigger:
event:
- push
- tag
2019-06-07 22:43:24 +00:00
refs:
- refs/heads/master
- refs/tags/v*
2019-06-07 22:40:04 +00:00
steps:
- name: build
image: plugins/docker
settings:
2019-06-07 22:43:24 +00:00
repo: iamthefij/dockron
2019-06-07 22:55:21 +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
---
kind: pipeline
name: linux-arm64
2019-06-07 22:55:21 +00:00
depends_on:
- test
2019-06-07 22:40:04 +00:00
trigger:
event:
- push
- tag
2019-06-07 22:43:24 +00:00
refs:
- refs/heads/master
- refs/tags/v*
2019-06-07 22:40:04 +00:00
steps:
- name: build
image: plugins/docker
settings:
2019-06-07 22:43:24 +00:00
repo: iamthefij/dockron
2019-06-07 22:55:21 +00:00
auto_tag: true
auto_tag_suffix: linux-arm64
2019-06-07 22:40:04 +00:00
username:
from_secret: docker_username
password:
from_secret: docker_password
build_args:
- ARCH=arm64
- REPO=arm64v8
2019-06-07 22:55:21 +00:00
---
kind: pipeline
name: manifest
depends_on:
- linux-amd64
- linux-arm
- linux-arm64
trigger:
event:
- push
- tag
ref:
- refs/heads/master
- refs/tags/v*
steps:
- 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