2020-08-19 20:12:17 +00:00
|
|
|
---
|
2019-06-07 22:40:04 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: test
|
2018-08-12 21:35:12 +00:00
|
|
|
|
2019-06-07 22:40:04 +00:00
|
|
|
steps:
|
|
|
|
- name: build
|
2020-08-19 20:12:17 +00:00
|
|
|
image: golang:1.15
|
2018-08-12 21:35:12 +00:00
|
|
|
commands:
|
|
|
|
- make build
|
2020-08-19 20:12:17 +00:00
|
|
|
- name: test
|
|
|
|
image: golang:1.15
|
|
|
|
commands:
|
|
|
|
- make test
|
|
|
|
- name: check
|
|
|
|
image: python:3-slim
|
|
|
|
commands:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install -y --no-install-recommends make
|
|
|
|
- pip install docker-compose
|
|
|
|
- make check
|
|
|
|
- name: itest
|
|
|
|
image: docker
|
|
|
|
commands:
|
|
|
|
- make itest
|
2019-06-07 22:40:04 +00:00
|
|
|
|
2020-08-19 20:14:48 +00:00
|
|
|
- name: notify
|
|
|
|
image: drillster/drone-email
|
|
|
|
settings:
|
|
|
|
host:
|
|
|
|
from_secret: SMTP_HOST # pragma: whitelist secret
|
|
|
|
username:
|
|
|
|
from_secret: SMTP_USER # pragma: whitelist secret
|
|
|
|
password:
|
|
|
|
from_secret: SMTP_PASS # pragma: whitelist secret
|
|
|
|
from: drone@iamthefij.com
|
|
|
|
when:
|
|
|
|
status: [changed, failure]
|
|
|
|
|
2019-06-07 22:40:04 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: publish
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
refs:
|
|
|
|
- refs/heads/master
|
|
|
|
- refs/tags/v*
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2019-06-08 00:08:15 +00:00
|
|
|
image: golang:1.12
|
2019-06-07 22:40:04 +00:00
|
|
|
commands:
|
2019-08-14 17:19:20 +00:00
|
|
|
- make build-linux-static
|
2019-06-07 22:40:04 +00:00
|
|
|
|
|
|
|
- name: push image - arm
|
|
|
|
image: plugins/docker
|
|
|
|
settings:
|
|
|
|
repo: iamthefij/dockron
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: linux-arm
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
build_args:
|
|
|
|
- ARCH=arm
|
2019-08-09 23:46:12 +00:00
|
|
|
- REPO=arm32v7
|
2019-06-07 22:40:04 +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:
|
2019-08-14 17:19:20 +00:00
|
|
|
- ARCH=arm64
|
|
|
|
- REPO=arm64v8
|
2019-06-07 22:40:04 +00:00
|
|
|
|
|
|
|
- name: push image - amd64
|
|
|
|
image: plugins/docker
|
|
|
|
settings:
|
|
|
|
repo: iamthefij/dockron
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: linux-amd64
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
|
|
|
|
- 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
|