wait-for/.drone.yml

353 lines
6.3 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
2020-11-28 14:11:46 +01:00
image_pull_secrets:
- docker_config
2020-02-03 16:51:44 +01:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
---
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
2020-11-28 14:11:46 +01:00
image: plugins/docker:19
2020-10-14 16:29:17 +02:00
settings:
2020-11-28 14:11:46 +01:00
config:
from_secret: docker_config
2020-10-14 16:29:17 +02:00
dockerfile: docker/Dockerfile
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
2020-11-28 14:11:46 +01:00
image: plugins/docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: amd64
2020-11-28 14:11:46 +01:00
config:
from_secret: docker_config
2020-10-14 16:29:17 +02:00
dockerfile: docker/Dockerfile
password:
from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
- refs/tags/**
- name: publish-quay
2020-11-28 14:11:46 +01:00
image: plugins/docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: amd64
2020-11-28 14:11:46 +01:00
config:
from_secret: docker_config
2020-10-14 16:29:17 +02:00
dockerfile: docker/Dockerfile
password:
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/master
- refs/tags/**
2020-11-28 14:11:46 +01:00
image_pull_secrets:
- docker_config
2020-10-14 16:29:17 +02:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
depends_on:
- test
---
kind: pipeline
name: build-container-arm64
platform:
os: linux
arch: arm64
steps:
- name: dryrun
2020-11-28 14:11:46 +01:00
image: plugins/docker:19
2020-10-14 16:29:17 +02:00
settings:
2020-11-28 14:11:46 +01:00
config:
from_secret: docker_config
2020-10-14 16:29:17 +02:00
dockerfile: docker/Dockerfile
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
2020-11-28 14:11:46 +01:00
image: plugins/docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm64
2020-11-28 14:11:46 +01:00
config:
from_secret: docker_config
2020-10-14 16:29:17 +02:00
dockerfile: docker/Dockerfile
password:
from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
- refs/tags/**
- name: publish-quay
2020-11-28 14:11:46 +01:00
image: plugins/docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm64
2020-11-28 14:11:46 +01:00
config:
from_secret: docker_config
2020-10-14 16:29:17 +02:00
dockerfile: docker/Dockerfile
password:
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/master
- refs/tags/**
2020-11-28 14:11:46 +01:00
image_pull_secrets:
- docker_config
2020-10-14 16:29:17 +02:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
depends_on:
- test
---
kind: pipeline
name: build-container-arm
platform:
os: linux
arch: arm
steps:
- name: dryrun
2020-11-28 14:11:46 +01:00
image: plugins/docker:19
2020-10-14 16:29:17 +02:00
settings:
2020-11-28 14:11:46 +01:00
config:
from_secret: docker_config
2020-10-14 16:29:17 +02:00
dockerfile: docker/Dockerfile
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
2020-11-28 14:11:46 +01:00
image: plugins/docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm
2020-11-28 14:11:46 +01:00
config:
from_secret: docker_config
2020-10-14 16:29:17 +02:00
dockerfile: docker/Dockerfile
password:
from_secret: docker_password
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
- refs/tags/**
- name: publish-quay
2020-11-28 14:11:46 +01:00
image: plugins/docker:19
2020-10-14 16:29:17 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm
2020-11-28 14:11:46 +01:00
config:
from_secret: docker_config
2020-10-14 16:29:17 +02:00
dockerfile: docker/Dockerfile
password:
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/master
- refs/tags/**
2020-11-28 14:11:46 +01:00
image_pull_secrets:
- docker_config
2020-10-14 16:29:17 +02:00
trigger:
ref:
- refs/heads/master
- 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
2020-11-28 14:11:46 +01:00
image_pull_secrets:
- docker_config
2020-02-03 16:51:44 +01:00
trigger:
ref:
- refs/heads/master
- 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
2020-11-28 14:11:46 +01:00
hmac: 22c03cba1bdc4e88f031f2f0cc8b6bcc6c366a03c855318299a6c18805260d2e
2020-02-03 16:51:44 +01:00
...