drone-plugin-lib/.drone.yml

162 lines
2.7 KiB
YAML
Raw Normal View History

---
kind: pipeline
2022-05-03 22:05:50 +02:00
name: test
platform:
os: linux
arch: amd64
steps:
2022-05-03 22:05:50 +02:00
- name: deps
2022-08-05 13:18:59 +02:00
image: golang:1.19
2022-05-03 22:05:50 +02:00
commands:
- make deps
volumes:
- name: godeps
path: /go
- name: lint
2022-08-05 13:18:59 +02:00
image: golang:1.19
2022-05-03 22:05:50 +02:00
commands:
- make lint
volumes:
- name: godeps
path: /go
- name: test
2022-08-05 13:18:59 +02:00
image: golang:1.19
2022-05-03 22:05:50 +02:00
commands:
- make test
volumes:
- name: godeps
path: /go
volumes:
2022-05-03 22:05:50 +02:00
- name: godeps
temp: {}
trigger:
ref:
- refs/heads/main
- refs/tags/**
- refs/pull/**
---
kind: pipeline
name: release
platform:
os: linux
arch: amd64
steps:
- name: changelog-generate
image: thegeeklab/git-chglog
commands:
- git fetch -tq
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}
- name: changelog-format
image: thegeeklab/alpine-tools
commands:
- prettier CHANGELOG.md
- prettier -w CHANGELOG.md
- name: publish
image: plugins/github-release
settings:
api_key:
from_secret: github_token
note: CHANGELOG.md
overwrite: true
title: ${DRONE_TAG}
when:
ref:
- refs/tags/**
image_pull_secrets:
- docker_config
trigger:
ref:
2022-05-03 22:05:50 +02:00
- refs/heads/main
- refs/tags/**
- refs/pull/**
depends_on:
- test
---
kind: pipeline
name: docs
platform:
os: linux
arch: amd64
steps:
- name: markdownlint
image: thegeeklab/markdownlint-cli
commands:
- markdownlint 'README.md' 'CONTRIBUTING.md'
- name: spellcheck
2022-07-17 20:45:28 +02:00
image: thegeeklab/alpine-tools
2022-05-03 22:05:50 +02:00
commands:
- spellchecker --files 'README.md' 'CONTRIBUTING.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
trigger:
ref:
- refs/heads/main
- refs/tags/**
- refs/pull/**
depends_on:
- release
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
- name: matrix
image: thegeeklab/drone-matrix
settings:
homeserver:
from_secret: matrix_homeserver
password:
from_secret: matrix_password
roomid:
from_secret: matrix_roomid
template: "Status: **{{ build.Status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.Link }}){{#if build.Branch}} ({{ build.Branch }}){{/if}} by {{ commit.Author }}<br/> Message: {{ commit.Message.Title }}"
username:
from_secret: matrix_username
when:
status:
- success
- failure
trigger:
ref:
- refs/heads/main
- refs/tags/**
status:
- success
- failure
depends_on:
- docs
---
kind: signature
2022-08-05 13:18:59 +02:00
hmac: 9cadf4dc495cf5ea9e54b4964eab9fd7a545d6b419c7cd78bc6846108428a926
...