2019-01-20 22:51:56 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2022-05-02 20:43:40 +00:00
|
|
|
name: test
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2022-05-02 20:43:40 +00:00
|
|
|
- name: deps
|
2023-02-08 09:14:25 +00:00
|
|
|
image: golang:1.20
|
2022-05-02 20:43:40 +00:00
|
|
|
commands:
|
|
|
|
- make deps
|
|
|
|
volumes:
|
|
|
|
- name: godeps
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: lint
|
2023-02-08 09:14:25 +00:00
|
|
|
image: golang:1.20
|
2022-05-02 20:43:40 +00:00
|
|
|
commands:
|
|
|
|
- make lint
|
|
|
|
volumes:
|
|
|
|
- name: godeps
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: test
|
2023-02-08 09:14:25 +00:00
|
|
|
image: golang:1.20
|
2022-05-02 20:43:40 +00:00
|
|
|
commands:
|
|
|
|
- make test
|
|
|
|
volumes:
|
|
|
|
- name: godeps
|
|
|
|
path: /go
|
2019-02-15 09:29:44 +00:00
|
|
|
|
|
|
|
volumes:
|
2022-05-02 20:43:40 +00:00
|
|
|
- name: godeps
|
|
|
|
temp: {}
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
trigger:
|
2019-02-15 09:29:44 +00:00
|
|
|
ref:
|
2022-05-02 20:43:40 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2022-05-02 20:43:40 +00:00
|
|
|
name: build-binaries
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2022-05-02 20:43:40 +00:00
|
|
|
- name: build
|
2023-02-08 09:14:25 +00:00
|
|
|
image: techknowlogick/xgo:go-1.20.x
|
2022-05-02 20:43:40 +00:00
|
|
|
commands:
|
2022-11-24 08:44:02 +00:00
|
|
|
- ln -s /drone/src /source
|
2022-05-02 20:43:40 +00:00
|
|
|
- make release
|
|
|
|
|
|
|
|
- name: executable
|
|
|
|
image: alpine
|
|
|
|
commands:
|
|
|
|
- $(find dist/ -executable -type f -iname ${DRONE_REPO_NAME}-linux-amd64) --help
|
|
|
|
|
|
|
|
- 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
|
|
|
|
files:
|
|
|
|
- dist/*
|
|
|
|
note: CHANGELOG.md
|
|
|
|
overwrite: true
|
|
|
|
title: ${DRONE_TAG}
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/tags/**
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
trigger:
|
2019-02-15 09:29:44 +00:00
|
|
|
ref:
|
2022-05-02 20:43:40 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
depends_on:
|
2022-05-02 20:43:40 +00:00
|
|
|
- test
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2023-01-14 21:45:25 +00:00
|
|
|
name: build-container
|
2022-05-02 20:43:40 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: dryrun
|
2023-02-09 07:54:22 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:23
|
2022-05-02 20:43:40 +00:00
|
|
|
settings:
|
2023-01-14 21:45:25 +00:00
|
|
|
dockerfile: Dockerfile.multiarch
|
2022-05-02 20:43:40 +00:00
|
|
|
dry_run: true
|
2023-01-14 21:45:25 +00:00
|
|
|
platforms:
|
|
|
|
- linux/amd64
|
|
|
|
- linux/arm64
|
|
|
|
- linux/arm/v7
|
|
|
|
- linux/arm/v6
|
|
|
|
provenance: false
|
2022-05-02 20:43:40 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
- name: publish-dockerhub
|
2023-02-09 07:54:22 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:23
|
2022-05-02 20:43:40 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
2023-01-14 21:45:25 +00:00
|
|
|
dockerfile: Dockerfile.multiarch
|
2022-05-02 20:43:40 +00:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2023-01-14 21:45:25 +00:00
|
|
|
platforms:
|
|
|
|
- linux/amd64
|
|
|
|
- linux/arm64
|
|
|
|
- linux/arm/v7
|
|
|
|
- linux/arm/v6
|
|
|
|
provenance: false
|
2022-05-02 20:43:40 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- dryrun
|
|
|
|
|
|
|
|
- name: publish-quay
|
2023-02-09 07:54:22 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:23
|
2022-05-02 20:43:40 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
2023-01-14 21:45:25 +00:00
|
|
|
dockerfile: Dockerfile.multiarch
|
2022-05-02 20:43:40 +00:00
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
2023-01-14 21:45:25 +00:00
|
|
|
platforms:
|
|
|
|
- linux/amd64
|
|
|
|
- linux/arm64
|
|
|
|
- linux/arm/v7
|
|
|
|
- linux/arm/v6
|
|
|
|
provenance: false
|
2022-05-02 20:43:40 +00:00
|
|
|
registry: quay.io
|
|
|
|
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: quay_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- dryrun
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
trigger:
|
2019-02-15 09:29:44 +00:00
|
|
|
ref:
|
2022-05-02 20:43:40 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
depends_on:
|
2022-05-02 20:43:40 +00:00
|
|
|
- test
|
2019-01-20 22:51:56 +00:00
|
|
|
|
2022-05-02 20:43:40 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: docs
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
limit: 1
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: markdownlint
|
|
|
|
image: thegeeklab/markdownlint-cli
|
|
|
|
commands:
|
|
|
|
- markdownlint 'docs/content/**/*.md' 'README.md' 'CONTRIBUTING.md'
|
|
|
|
|
|
|
|
- name: spellcheck
|
2022-07-17 18:45:27 +00:00
|
|
|
image: thegeeklab/alpine-tools
|
2022-05-02 20:43:40 +00:00
|
|
|
commands:
|
|
|
|
- spellchecker --files '_docs/**/*.md' 'README.md' 'CONTRIBUTING.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions
|
|
|
|
environment:
|
|
|
|
FORCE_COLOR: true
|
|
|
|
NPM_CONFIG_LOGLEVEL: error
|
|
|
|
|
|
|
|
- name: publish
|
2023-01-14 22:21:18 +00:00
|
|
|
image: thegeeklab/drone-git-action
|
2022-05-02 20:43:40 +00:00
|
|
|
settings:
|
2023-01-14 22:21:18 +00:00
|
|
|
action:
|
|
|
|
- pages
|
|
|
|
author_email: bot@thegeeklab.de
|
|
|
|
author_name: thegeeklab-bot
|
|
|
|
branch: docs
|
|
|
|
message: auto-update documentation
|
|
|
|
netrc_password:
|
2022-05-02 20:43:40 +00:00
|
|
|
from_secret: github_token
|
2023-01-14 22:21:18 +00:00
|
|
|
pages_directory: _docs/
|
2022-05-02 20:43:40 +00:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- build-binaries
|
2023-01-14 21:45:25 +00:00
|
|
|
- build-container
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notifications
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2022-05-02 20:43:40 +00:00
|
|
|
- name: pushrm-dockerhub
|
|
|
|
image: chko/docker-pushrm:1
|
|
|
|
environment:
|
|
|
|
DOCKER_PASS:
|
|
|
|
from_secret: docker_password
|
|
|
|
DOCKER_USER:
|
|
|
|
from_secret: docker_username
|
|
|
|
PUSHRM_FILE: README.md
|
|
|
|
PUSHRM_SHORT: Drone plugin to synchronize a directory with an S3 bucket
|
|
|
|
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
|
|
|
|
- name: pushrm-quay
|
|
|
|
image: chko/docker-pushrm:1
|
|
|
|
environment:
|
|
|
|
APIKEY__QUAY_IO:
|
|
|
|
from_secret: quay_token
|
|
|
|
PUSHRM_FILE: README.md
|
|
|
|
PUSHRM_TARGET: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
|
|
|
|
- name: matrix
|
|
|
|
image: thegeeklab/drone-matrix
|
|
|
|
settings:
|
|
|
|
homeserver:
|
|
|
|
from_secret: matrix_homeserver
|
|
|
|
password:
|
|
|
|
from_secret: matrix_password
|
|
|
|
roomid:
|
|
|
|
from_secret: matrix_roomid
|
2023-02-08 16:04:32 +00:00
|
|
|
template: "Status: **{{ .Build.Status }}**<br/> Build: [{{ .Repo.Owner }}/{{ .Repo.Name }}]({{ .Build.Link }}){{ if .Build.Branch }} ({{ .Build.Branch }}){{ end }} by {{ .Commit.Author }}<br/> Message: {{ .Commit.Message.Title }}"
|
2022-05-02 20:43:40 +00:00
|
|
|
username:
|
|
|
|
from_secret: matrix_username
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
trigger:
|
2019-02-15 09:29:44 +00:00
|
|
|
ref:
|
2022-05-02 20:43:40 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
depends_on:
|
2022-05-02 20:43:40 +00:00
|
|
|
- docs
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: signature
|
2023-02-09 07:54:22 +00:00
|
|
|
hmac: dfc2eb36a2e743dc5a698a1721eac2e1e2f2702e3c53dde73e44a297c0e40744
|
2019-01-20 22:51:56 +00:00
|
|
|
|
|
|
|
...
|