wait-for/.drone.yml

232 lines
4.4 KiB
YAML
Raw Normal View History

2020-02-03 16:51:44 +01:00
---
kind: pipeline
2020-10-14 16:29:17 +02:00
name: test
2021-09-19 21:32:11 +02:00
2020-02-03 16:51:44 +01:00
platform:
2021-09-13 10:55:36 +02:00
os: linux
2021-09-19 21:32:11 +02:00
arch: amd64
2020-02-03 16:51:44 +01:00
steps:
2021-09-19 21:32:11 +02:00
- name: lint
image: koalaman/shellcheck-alpine:stable
commands:
- shellcheck ./wait-for
- name: test-nc
2021-09-19 21:32:11 +02:00
image: bats/bats
commands:
- bats ./wait-for.bats
- name: test-bash
image: bats/bats
commands:
- rm -rf /usr/bin/nc
- bats ./wait-for.bats
2020-02-03 16:51:44 +01:00
trigger:
ref:
2021-09-19 21:32:11 +02:00
- refs/heads/main
- refs/tags/**
- refs/pull/**
2021-01-04 16:02:52 +01:00
---
kind: pipeline
name: build-package
2021-09-19 21:32:11 +02:00
2021-01-04 16:02:52 +01:00
platform:
2021-09-13 10:55:36 +02:00
os: linux
2021-09-19 21:32:11 +02:00
arch: amd64
2021-01-04 16:02:52 +01:00
steps:
2021-09-19 21:32:11 +02:00
- name: checksum
image: alpine
commands:
- sha256sum wait-for > sha256sum.txt
- 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-github
image: plugins/github-release
settings:
api_key:
from_secret: github_token
files:
- wait-for
- sha256sum.txt
note: CHANGELOG.md
overwrite: true
title: ${DRONE_TAG}
when:
ref:
- refs/tags/**
2021-01-04 16:02:52 +01:00
trigger:
ref:
2021-09-19 21:32:11 +02:00
- refs/heads/main
- refs/tags/**
- refs/pull/**
2021-01-04 16:02:52 +01:00
depends_on:
2021-09-19 21:32:11 +02:00
- test
---
2020-02-03 16:51:44 +01:00
kind: pipeline
name: build-container
2021-09-19 21:32:11 +02:00
2020-02-03 16:51:44 +01:00
platform:
2021-09-13 10:55:36 +02:00
os: linux
2021-09-19 21:32:11 +02:00
arch: amd64
2020-02-03 16:51:44 +01:00
steps:
2021-09-19 21:32:11 +02:00
- name: dryrun
image: thegeeklab/drone-docker-buildx:23
2021-09-19 21:32:11 +02:00
settings:
dockerfile: Dockerfile.multiarch
2021-09-19 21:32:11 +02:00
dry_run: true
platforms:
- linux/amd64
- linux/arm64
- linux/arm/v7
- linux/arm/v6
provenance: false
2021-09-19 21:32:11 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
when:
ref:
- refs/pull/**
- name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:23
2021-09-19 21:32:11 +02:00
settings:
auto_tag: true
dockerfile: Dockerfile.multiarch
2021-09-19 21:32:11 +02:00
password:
from_secret: docker_password
platforms:
- linux/amd64
- linux/arm64
- linux/arm/v7
- linux/arm/v6
provenance: false
2021-09-19 21:32:11 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
- refs/tags/**
depends_on:
- dryrun
2021-09-19 21:32:11 +02:00
- name: publish-quay
image: thegeeklab/drone-docker-buildx:23
2021-09-19 21:32:11 +02:00
settings:
auto_tag: true
dockerfile: Dockerfile.multiarch
2021-09-19 21:32:11 +02:00
password:
from_secret: quay_password
platforms:
- linux/amd64
- linux/arm64
- linux/arm/v7
- linux/arm/v6
provenance: false
2021-09-19 21:32:11 +02: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
2021-09-19 21:32:11 +02:00
2020-10-14 16:29:17 +02:00
trigger:
ref:
2021-09-19 21:32:11 +02:00
- refs/heads/main
- refs/tags/**
- refs/pull/**
2020-10-14 16:29:17 +02:00
depends_on:
2021-09-19 21:32:11 +02:00
- test
---
2020-10-14 16:29:17 +02:00
kind: pipeline
name: notifications
2021-09-19 21:32:11 +02:00
2020-10-14 16:29:17 +02:00
platform:
2021-09-13 10:55:36 +02:00
os: linux
2021-09-19 21:32:11 +02:00
arch: amd64
2020-10-14 16:29:17 +02:00
steps:
2021-09-19 21:32:11 +02:00
- name: pushrm-dockerhub
pull: always
image: chko/docker-pushrm:1
environment:
DOCKER_PASS:
from_secret: docker_password
DOCKER_USER:
from_secret: docker_username
PUSHRM_FILE: README.md
PUSHRM_SHORT: Poor-mans docker service synchronizer
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
when:
status:
- success
- name: pushrm-quay
pull: always
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 21:33:49 +01: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 }}"
2021-09-19 21:32:11 +02:00
username:
from_secret: matrix_username
when:
status:
- success
- failure
2020-02-03 16:51:44 +01:00
trigger:
ref:
2021-09-19 21:32:11 +02:00
- refs/heads/main
- refs/tags/**
2020-02-03 16:51:44 +01:00
status:
2021-09-19 21:32:11 +02:00
- success
- failure
depends_on:
- build-container
2021-09-19 21:32:11 +02:00
2020-02-03 16:51:44 +01:00
---
kind: signature
2023-03-02 14:04:24 +01:00
hmac: dcda7aed778df0aa478080900afef24612002100c54286b04d82fc22dc534e07
2020-02-03 16:51:44 +01:00
...