wait-for/.drone.yml

365 lines
6.6 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
2020-02-03 16:51:44 +01:00
platform:
os: linux
arch: amd64
steps:
2020-02-03 16:56:25 +01:00
- name: lint
image: koalaman/shellcheck-alpine:stable
commands:
- shellcheck ./wait-for
2020-02-03 16:51:44 +01:00
- name: test
image: bats/bats
commands:
- bats ./wait-for.bats
trigger:
ref:
- refs/heads/main
2020-02-03 16:51:44 +01:00
- refs/tags/**
- refs/pull/**
2021-01-04 16:02:52 +01:00
---
kind: pipeline
name: build-package
platform:
os: linux
arch: amd64
steps:
- name: checksum
image: alpine
commands:
- sha256sum wait-for > sha256sum.txt
2021-03-23 20:42:59 +01:00
- name: changelog
image: thegeeklab/git-chglog
commands:
- git fetch -tq
- git-chglog --no-color --no-emoji ${DRONE_TAG:---next-tag unreleased unreleased}
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}
2021-01-04 16:02:52 +01:00
- 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/**
trigger:
ref:
- refs/heads/main
2021-01-04 16:02:52 +01:00
- refs/tags/**
- refs/pull/**
depends_on:
- test
2020-02-03 16:51:44 +01:00
---
kind: pipeline
2020-10-14 16:29:17 +02:00
name: build-container-amd64
2020-02-03 16:51:44 +01:00
platform:
os: linux
arch: amd64
steps:
2020-10-14 16:29:17 +02:00
- name: dryrun
2021-01-17 15:19:27 +01:00
image: thegeeklab/drone-docker:19
2020-10-14 16:29:17 +02:00
settings:
2021-01-04 16:11:57 +01:00
dockerfile: docker/Dockerfile.amd64
2020-10-14 16:29:17 +02:00
dry_run: true
password:
from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/pull/**
- name: publish-dockerhub
2021-01-17 15:19:27 +01:00
image: thegeeklab/drone-docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: amd64
2021-01-04 16:11:57 +01:00
dockerfile: docker/Dockerfile.amd64
2020-10-14 16:29:17 +02:00
password:
from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
2020-10-14 16:29:17 +02:00
- refs/tags/**
- name: publish-quay
2021-01-17 15:19:27 +01:00
image: thegeeklab/drone-docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: amd64
2021-01-04 16:11:57 +01:00
dockerfile: docker/Dockerfile.amd64
2020-10-14 16:29:17 +02:00
password:
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/main
2020-10-14 16:29:17 +02:00
- refs/tags/**
trigger:
ref:
- refs/heads/main
2020-10-14 16:29:17 +02:00
- refs/tags/**
- refs/pull/**
depends_on:
- test
---
kind: pipeline
name: build-container-arm64
platform:
os: linux
arch: arm64
steps:
- name: dryrun
2021-01-17 15:19:27 +01:00
image: thegeeklab/drone-docker:19
2020-10-14 16:29:17 +02:00
settings:
2021-01-04 16:11:57 +01:00
dockerfile: docker/Dockerfile.arm64
2020-10-14 16:29:17 +02:00
dry_run: true
password:
from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/pull/**
- name: publish-dockerhub
2021-01-17 15:19:27 +01:00
image: thegeeklab/drone-docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm64
2021-01-04 16:11:57 +01:00
dockerfile: docker/Dockerfile.arm64
2020-10-14 16:29:17 +02:00
password:
from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
2020-10-14 16:29:17 +02:00
- refs/tags/**
- name: publish-quay
2021-01-17 15:19:27 +01:00
image: thegeeklab/drone-docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm64
2021-01-04 16:11:57 +01:00
dockerfile: docker/Dockerfile.arm64
2020-10-14 16:29:17 +02:00
password:
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/main
2020-10-14 16:29:17 +02:00
- refs/tags/**
trigger:
ref:
- refs/heads/main
2020-10-14 16:29:17 +02:00
- refs/tags/**
- refs/pull/**
depends_on:
- test
---
kind: pipeline
name: build-container-arm
platform:
os: linux
arch: arm
steps:
- name: dryrun
2021-01-17 15:19:27 +01:00
image: thegeeklab/drone-docker:19
2020-10-14 16:29:17 +02:00
settings:
2021-01-04 16:11:57 +01:00
dockerfile: docker/Dockerfile.arm
2020-10-14 16:29:17 +02:00
dry_run: true
password:
from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/pull/**
- name: publish-dockerhub
2021-01-17 15:19:27 +01:00
image: thegeeklab/drone-docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm
2021-01-04 16:11:57 +01:00
dockerfile: docker/Dockerfile.arm
2020-10-14 16:29:17 +02:00
password:
from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
2020-10-14 16:29:17 +02:00
- refs/tags/**
- name: publish-quay
2021-01-17 15:19:27 +01:00
image: thegeeklab/drone-docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm
2021-01-04 16:11:57 +01:00
dockerfile: docker/Dockerfile.arm
2020-10-14 16:29:17 +02:00
password:
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/main
2020-10-14 16:29:17 +02:00
- refs/tags/**
trigger:
ref:
- refs/heads/main
2020-10-14 16:29:17 +02:00
- refs/tags/**
- refs/pull/**
depends_on:
- test
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
- name: manifest-dockerhub
image: plugins/manifest
settings:
auto_tag: true
ignore_missing: true
password:
from_secret: docker_password
spec: docker/manifest.tmpl
username:
from_secret: docker_username
when:
status:
- success
- name: manifest-quay
image: plugins/manifest
settings:
auto_tag: true
ignore_missing: true
password:
from_secret: quay_password
spec: docker/manifest-quay.tmpl
username:
from_secret: quay_username
when:
status:
- success
- 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
2020-10-14 16:34:44 +02:00
PUSHRM_SHORT: Poor-mans docker service synchronizer
2020-10-14 16:29:17 +02:00
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
2020-02-03 16:51:44 +01:00
- name: matrix
image: plugins/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 }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
username:
from_secret: matrix_username
2020-10-14 16:29:17 +02:00
when:
status:
- success
- failure
2020-02-03 16:51:44 +01:00
trigger:
ref:
- refs/heads/main
2020-02-03 16:51:44 +01:00
- refs/tags/**
status:
- success
- failure
depends_on:
2020-10-14 16:29:17 +02:00
- build-container-amd64
- build-container-arm
- build-container-arm64
2020-02-03 16:51:44 +01:00
---
kind: signature
hmac: e5b493ca16ac60cad643d506e88920384b9c07494d7d0cf854f798a0ca08e2dc
2020-02-03 16:51:44 +01:00
...