2019-11-16 01:30:29 +00:00
|
|
|
---
|
2019-10-07 21:59:39 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: test
|
|
|
|
|
|
|
|
steps:
|
2019-10-07 22:02:13 +00:00
|
|
|
|
2019-10-07 21:59:39 +00:00
|
|
|
- name: test
|
|
|
|
image: golang:1.12
|
2020-07-07 18:37:55 +00:00
|
|
|
environment:
|
|
|
|
VERSION: ${DRONE_TAG:-${DRONE_COMMIT}}
|
2019-10-07 21:59:39 +00:00
|
|
|
commands:
|
2019-11-21 23:35:51 +00:00
|
|
|
- make build
|
2019-10-07 21:59:39 +00:00
|
|
|
- make test
|
2019-11-16 01:30:29 +00:00
|
|
|
|
2019-11-21 23:30:19 +00:00
|
|
|
- name: check
|
|
|
|
image: python:3
|
|
|
|
commands:
|
|
|
|
- pip install pre-commit==1.20.0
|
|
|
|
- make check
|
|
|
|
|
2019-11-16 01:30:29 +00:00
|
|
|
- name: notify
|
|
|
|
image: drillster/drone-email
|
|
|
|
settings:
|
|
|
|
host:
|
|
|
|
from_secret: SMTP_HOST
|
|
|
|
username:
|
|
|
|
from_secret: SMTP_USER
|
|
|
|
password:
|
|
|
|
from_secret: SMTP_PASS
|
|
|
|
from: drone@iamthefij.com
|
|
|
|
when:
|
|
|
|
status: [changed, failure]
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: publish
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
refs:
|
|
|
|
- refs/heads/master
|
|
|
|
- refs/tags/v*
|
|
|
|
|
|
|
|
steps:
|
2020-01-10 21:58:17 +00:00
|
|
|
- name: build all binaries
|
|
|
|
image: golang:1.12
|
2020-07-07 18:37:55 +00:00
|
|
|
environment:
|
|
|
|
VERSION: ${DRONE_TAG:-${DRONE_COMMIT}}
|
2020-01-10 21:58:17 +00:00
|
|
|
commands:
|
2020-07-07 03:33:02 +00:00
|
|
|
- make all-linux
|
2020-01-10 21:58:17 +00:00
|
|
|
|
2021-01-08 22:21:02 +00:00
|
|
|
- name: compress binaries for release
|
|
|
|
image: busybox
|
|
|
|
- find ./dist -type f -perm +111 -execdir tar -czvf {}.tar.gz {} \;
|
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
|
|
|
- name: upload gitea release
|
|
|
|
image: plugins/gitea-release
|
|
|
|
settings:
|
|
|
|
title: ${DRONE_TAG}
|
|
|
|
files: dist/*.tar.gz
|
|
|
|
checksum:
|
|
|
|
- md5
|
|
|
|
- sha1
|
|
|
|
- sha256
|
|
|
|
- sha512
|
|
|
|
base_url:
|
|
|
|
from_secret: gitea_base_url
|
|
|
|
api_key:
|
|
|
|
from_secret: gitea_token
|
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
2020-01-10 21:58:17 +00:00
|
|
|
- name: push image - arm
|
|
|
|
image: plugins/docker
|
|
|
|
settings:
|
|
|
|
repo: iamthefij/minitor-go
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: linux-arm
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
build_args:
|
|
|
|
- ARCH=arm
|
|
|
|
- REPO=arm32v7
|
2019-11-16 01:30:29 +00:00
|
|
|
|
2020-01-10 21:58:17 +00:00
|
|
|
- name: push image - arm64
|
2019-11-16 01:30:29 +00:00
|
|
|
image: plugins/docker
|
|
|
|
settings:
|
|
|
|
repo: iamthefij/minitor-go
|
|
|
|
auto_tag: true
|
2020-01-10 21:58:17 +00:00
|
|
|
auto_tag_suffix: linux-arm64
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
build_args:
|
|
|
|
- ARCH=arm64
|
|
|
|
- REPO=arm64v8
|
|
|
|
|
|
|
|
- name: push image - amd64
|
|
|
|
image: plugins/docker
|
|
|
|
settings:
|
|
|
|
repo: iamthefij/minitor-go
|
|
|
|
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
|
2019-11-16 01:30:29 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-01-10 22:25:02 +00:00
|
|
|
|
|
|
|
- name: notify
|
|
|
|
image: drillster/drone-email
|
|
|
|
settings:
|
|
|
|
host:
|
|
|
|
from_secret: SMTP_HOST
|
|
|
|
username:
|
|
|
|
from_secret: SMTP_USER
|
|
|
|
password:
|
|
|
|
from_secret: SMTP_PASS
|
|
|
|
from: drone@iamthefij.com
|
|
|
|
when:
|
|
|
|
status: [changed, failure]
|