wait-for/.drone.yml

330 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:
arch: amd64
2021-09-13 10:55:36 +02:00
os: linux
2020-02-03 16:51:44 +01:00
steps:
2021-09-13 10:55:36 +02:00
- commands:
2020-02-03 16:56:25 +01:00
- shellcheck ./wait-for
2021-09-13 10:55:36 +02:00
image: koalaman/shellcheck-alpine:stable
name: lint
- commands:
2020-02-03 16:51:44 +01:00
- bats ./wait-for.bats
2021-09-13 10:55:36 +02:00
image: bats/bats
name: test
2020-02-03 16:51:44 +01:00
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
---
2021-09-13 10:55:36 +02:00
depends_on:
- test
2021-01-04 16:02:52 +01:00
kind: pipeline
name: build-package
platform:
arch: amd64
2021-09-13 10:55:36 +02:00
os: linux
2021-01-04 16:02:52 +01:00
steps:
2021-09-13 10:55:36 +02:00
- commands:
2021-01-04 16:02:52 +01:00
- sha256sum wait-for > sha256sum.txt
2021-09-13 10:55:36 +02:00
image: alpine
name: checksum
- commands:
2021-03-23 20:42:59 +01:00
- git fetch -tq
2021-09-13 10:55:36 +02:00
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased
unreleased}
image: thegeeklab/git-chglog
name: changelog-generate
- commands:
- prettier CHANGELOG.md
- prettier -w CHANGELOG.md
2021-09-13 10:55:36 +02:00
image: thegeeklab/alpine-tools
name: changelog-format
- image: plugins/github-release
name: publish-github
2021-01-04 16:02:52 +01:00
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/**
2021-09-13 10:55:36 +02:00
---
2021-01-04 16:02:52 +01:00
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:
arch: amd64
2021-09-13 10:55:36 +02:00
os: linux
2020-02-03 16:51:44 +01:00
steps:
2021-09-13 10:55:36 +02:00
- image: thegeeklab/drone-docker:19
name: dryrun
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/**
2021-09-13 10:55:36 +02:00
- image: thegeeklab/drone-docker:19
name: publish-dockerhub
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/**
2021-09-13 10:55:36 +02:00
- image: thegeeklab/drone-docker:19
name: publish-quay
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/**
2021-09-13 10:55:36 +02:00
---
2020-10-14 16:29:17 +02:00
depends_on:
- test
kind: pipeline
name: build-container-arm64
platform:
arch: arm64
2021-09-13 10:55:36 +02:00
os: linux
2020-10-14 16:29:17 +02:00
steps:
2021-09-13 10:55:36 +02:00
- image: thegeeklab/drone-docker:19
name: dryrun
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/**
2021-09-13 10:55:36 +02:00
- image: thegeeklab/drone-docker:19
name: publish-dockerhub
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/**
2021-09-13 10:55:36 +02:00
- image: thegeeklab/drone-docker:19
name: publish-quay
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/**
2021-09-13 10:55:36 +02:00
---
2020-10-14 16:29:17 +02:00
depends_on:
- test
kind: pipeline
name: build-container-arm
platform:
arch: arm
2021-09-13 10:55:36 +02:00
os: linux
2020-10-14 16:29:17 +02:00
steps:
2021-09-13 10:55:36 +02:00
- image: thegeeklab/drone-docker:19
name: dryrun
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/**
2021-09-13 10:55:36 +02:00
- image: thegeeklab/drone-docker:19
name: publish-dockerhub
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/**
2021-09-13 10:55:36 +02:00
- image: thegeeklab/drone-docker:19
name: publish-quay
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/**
---
2021-09-13 10:55:36 +02:00
depends_on:
- build-container-amd64
- build-container-arm
- build-container-arm64
2020-10-14 16:29:17 +02:00
kind: pipeline
name: notifications
platform:
arch: amd64
2021-09-13 10:55:36 +02:00
os: linux
2020-10-14 16:29:17 +02:00
steps:
2021-09-13 10:55:36 +02:00
- image: plugins/manifest
name: manifest-dockerhub
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
ignore_missing: true
password:
from_secret: docker_password
spec: docker/manifest.tmpl
username:
from_secret: docker_username
when:
status:
- success
2021-09-13 10:55:36 +02:00
- image: plugins/manifest
name: manifest-quay
2020-10-14 16:29:17 +02:00
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
2021-09-13 10:55:36 +02:00
- environment:
2020-10-14 16:29:17 +02:00
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}
2021-09-13 10:55:36 +02:00
image: chko/docker-pushrm:1
name: pushrm-dockerhub
pull: always
2020-10-14 16:29:17 +02:00
when:
status:
- success
2021-09-13 10:55:36 +02:00
- environment:
2020-10-14 16:29:17 +02:00
APIKEY__QUAY_IO:
from_secret: quay_token
PUSHRM_FILE: README.md
PUSHRM_TARGET: quay.io/thegeeklab/${DRONE_REPO_NAME}
2021-09-13 10:55:36 +02:00
image: chko/docker-pushrm:1
name: pushrm-quay
pull: always
2020-10-14 16:29:17 +02:00
when:
status:
- success
2021-09-13 10:55:36 +02:00
- image: plugins/matrix
name: matrix
2020-02-03 16:51:44 +01:00
settings:
homeserver:
from_secret: matrix_homeserver
password:
from_secret: matrix_password
roomid:
from_secret: matrix_roomid
2021-09-13 10:55:36 +02:00
template: 'Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name
}}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message:
{{ build.message }}'
2020-02-03 16:51:44 +01:00
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
---
kind: signature
2021-09-13 10:55:36 +02:00
hmac: 6fbd749273f067a96f12909fd22d46b28fa32bf61a13000ecd04a760f628140d
2020-02-03 16:51:44 +01:00
...