2020-02-03 15:51:44 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-10-14 14:29:17 +00:00
|
|
|
name: test
|
2021-09-19 19:32:11 +00:00
|
|
|
|
2020-02-03 15:51:44 +00:00
|
|
|
platform:
|
2021-09-13 08:55:36 +00:00
|
|
|
os: linux
|
2021-09-19 19:32:11 +00:00
|
|
|
arch: amd64
|
|
|
|
|
2020-02-03 15:51:44 +00:00
|
|
|
steps:
|
2021-09-19 19:32:11 +00:00
|
|
|
- name: lint
|
|
|
|
image: koalaman/shellcheck-alpine:stable
|
|
|
|
commands:
|
|
|
|
- shellcheck ./wait-for
|
|
|
|
|
|
|
|
- name: test
|
|
|
|
image: bats/bats
|
|
|
|
commands:
|
|
|
|
- bats ./wait-for.bats
|
|
|
|
|
2020-02-03 15:51:44 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2021-09-19 19:32:11 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
2021-01-04 15:02:52 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: build-package
|
2021-09-19 19:32:11 +00:00
|
|
|
|
2021-01-04 15:02:52 +00:00
|
|
|
platform:
|
2021-09-13 08:55:36 +00:00
|
|
|
os: linux
|
2021-09-19 19:32:11 +00:00
|
|
|
arch: amd64
|
|
|
|
|
2021-01-04 15:02:52 +00:00
|
|
|
steps:
|
2021-09-19 19:32:11 +00: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 15:02:52 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2021-09-19 19:32:11 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
2021-01-04 15:02:52 +00:00
|
|
|
depends_on:
|
2021-09-19 19:32:11 +00:00
|
|
|
- test
|
|
|
|
|
|
|
|
---
|
2020-02-03 15:51:44 +00:00
|
|
|
kind: pipeline
|
2020-10-14 14:29:17 +00:00
|
|
|
name: build-container-amd64
|
2021-09-19 19:32:11 +00:00
|
|
|
|
2020-02-03 15:51:44 +00:00
|
|
|
platform:
|
2021-09-13 08:55:36 +00:00
|
|
|
os: linux
|
2021-09-19 19:32:11 +00:00
|
|
|
arch: amd64
|
|
|
|
|
2020-02-03 15:51:44 +00:00
|
|
|
steps:
|
2021-09-19 19:32:11 +00:00
|
|
|
- name: dryrun
|
|
|
|
image: thegeeklab/drone-docker:19
|
|
|
|
settings:
|
|
|
|
dockerfile: docker/Dockerfile.amd64
|
|
|
|
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
|
|
|
|
image: thegeeklab/drone-docker:19
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: amd64
|
|
|
|
dockerfile: docker/Dockerfile.amd64
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
|
|
|
|
- name: publish-quay
|
|
|
|
image: thegeeklab/drone-docker:19
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: amd64
|
|
|
|
dockerfile: docker/Dockerfile.amd64
|
|
|
|
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
|
|
|
|
- refs/tags/**
|
|
|
|
|
2020-10-14 14:29:17 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2021-09-19 19:32:11 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
2020-10-14 14:29:17 +00:00
|
|
|
depends_on:
|
2021-09-19 19:32:11 +00:00
|
|
|
- test
|
|
|
|
|
|
|
|
---
|
2020-10-14 14:29:17 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: build-container-arm64
|
2021-09-19 19:32:11 +00:00
|
|
|
|
2020-10-14 14:29:17 +00:00
|
|
|
platform:
|
2021-09-13 08:55:36 +00:00
|
|
|
os: linux
|
2021-09-19 19:32:11 +00:00
|
|
|
arch: arm64
|
|
|
|
|
2020-10-14 14:29:17 +00:00
|
|
|
steps:
|
2021-09-19 19:32:11 +00:00
|
|
|
- name: dryrun
|
|
|
|
image: thegeeklab/drone-docker:19
|
|
|
|
settings:
|
|
|
|
dockerfile: docker/Dockerfile.arm64
|
|
|
|
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
|
|
|
|
image: thegeeklab/drone-docker:19
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: arm64
|
|
|
|
dockerfile: docker/Dockerfile.arm64
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
|
|
|
|
- name: publish-quay
|
|
|
|
image: thegeeklab/drone-docker:19
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: arm64
|
|
|
|
dockerfile: docker/Dockerfile.arm64
|
|
|
|
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
|
|
|
|
- refs/tags/**
|
|
|
|
|
2020-10-14 14:29:17 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2021-09-19 19:32:11 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
2020-10-14 14:29:17 +00:00
|
|
|
depends_on:
|
2021-09-19 19:32:11 +00:00
|
|
|
- test
|
|
|
|
|
|
|
|
---
|
2020-10-14 14:29:17 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: build-container-arm
|
2021-09-19 19:32:11 +00:00
|
|
|
|
2020-10-14 14:29:17 +00:00
|
|
|
platform:
|
2021-09-13 08:55:36 +00:00
|
|
|
os: linux
|
2021-09-19 19:32:11 +00:00
|
|
|
arch: arm
|
|
|
|
|
2020-10-14 14:29:17 +00:00
|
|
|
steps:
|
2021-09-19 19:32:11 +00:00
|
|
|
- name: dryrun
|
|
|
|
image: thegeeklab/drone-docker:19
|
|
|
|
settings:
|
|
|
|
dockerfile: docker/Dockerfile.arm
|
|
|
|
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
|
|
|
|
image: thegeeklab/drone-docker:19
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: arm
|
|
|
|
dockerfile: docker/Dockerfile.arm
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
|
|
|
|
- name: publish-quay
|
|
|
|
image: thegeeklab/drone-docker:19
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: arm
|
|
|
|
dockerfile: docker/Dockerfile.arm
|
|
|
|
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
|
|
|
|
- refs/tags/**
|
|
|
|
|
2020-10-14 14:29:17 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2021-09-19 19:32:11 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
2021-09-13 08:55:36 +00:00
|
|
|
depends_on:
|
2021-09-19 19:32:11 +00:00
|
|
|
- test
|
|
|
|
|
|
|
|
---
|
2020-10-14 14:29:17 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: notifications
|
2021-09-19 19:32:11 +00:00
|
|
|
|
2020-10-14 14:29:17 +00:00
|
|
|
platform:
|
2021-09-13 08:55:36 +00:00
|
|
|
os: linux
|
2021-09-19 19:32:11 +00:00
|
|
|
arch: amd64
|
|
|
|
|
2020-10-14 14:29:17 +00:00
|
|
|
steps:
|
2021-09-19 19:32:11 +00:00
|
|
|
- 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
|
|
|
|
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
|
2021-09-22 07:38:28 +00:00
|
|
|
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 }}"
|
2021-09-19 19:32:11 +00:00
|
|
|
username:
|
|
|
|
from_secret: matrix_username
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
2020-02-03 15:51:44 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2021-09-19 19:32:11 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
2020-02-03 15:51:44 +00:00
|
|
|
status:
|
2021-09-19 19:32:11 +00:00
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- build-container-amd64
|
|
|
|
- build-container-arm
|
|
|
|
- build-container-arm64
|
|
|
|
|
2020-02-03 15:51:44 +00:00
|
|
|
---
|
|
|
|
kind: signature
|
2021-09-22 07:38:28 +00:00
|
|
|
hmac: 510f261e08feecd3c9785b81e9e01c38c1716b448a6eb6866279824e533b71d9
|
2020-02-03 15:51:44 +00:00
|
|
|
|
|
|
|
...
|