2022-02-18 22:36:19 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: test
|
2024-01-06 22:55:44 +00:00
|
|
|
image: golang:1.21
|
2022-02-18 22:36:19 +00:00
|
|
|
environment:
|
|
|
|
VERSION: ${DRONE_TAG:-${DRONE_COMMIT}}
|
|
|
|
commands:
|
2022-04-07 20:04:06 +00:00
|
|
|
- apt-get update
|
2022-04-07 17:17:54 +00:00
|
|
|
- apt-get install -y --no-install-recommends restic
|
2022-02-18 22:36:19 +00:00
|
|
|
- make test
|
|
|
|
|
|
|
|
- name: check
|
2024-01-06 23:12:27 +00:00
|
|
|
image: iamthefij/drone-pre-commit@sha256:30fa17489b86d7a4c3ad9c3ce2e152c25d82b8671e5609d322c6cae0baed89cd
|
2022-02-18 22:36:19 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: publish
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
refs:
|
|
|
|
- refs/heads/master
|
|
|
|
- refs/tags/v*
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build all binaries
|
2024-01-06 22:55:44 +00:00
|
|
|
image: golang:1.21
|
2022-02-18 22:36:19 +00:00
|
|
|
environment:
|
|
|
|
VERSION: ${DRONE_TAG:-${DRONE_COMMIT}}
|
|
|
|
commands:
|
|
|
|
- make all
|
|
|
|
|
|
|
|
- name: compress binaries for release
|
|
|
|
image: ubuntu
|
|
|
|
commands:
|
|
|
|
- find ./dist -type f -executable -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
|
|
|
|
|
2022-04-11 20:00:22 +00:00
|
|
|
- name: push images
|
|
|
|
image: thegeeklab/drone-docker-buildx
|
2022-04-05 03:25:05 +00:00
|
|
|
settings:
|
|
|
|
repo: iamthefij/resticscheduler
|
|
|
|
auto_tag: true
|
2022-04-11 20:00:22 +00:00
|
|
|
platforms:
|
|
|
|
- linux/amd64
|
|
|
|
- linux/arm64
|
|
|
|
- linux/arm
|
2022-04-05 03:25:05 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
|
2022-02-18 22:36:19 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notify
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- test
|
|
|
|
- publish
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
status:
|
|
|
|
- failure
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- 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
|