2020-11-01 23:03:33 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: test
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2021-09-19 19:48:16 +00:00
|
|
|
- name: markdownlint
|
|
|
|
image: thegeeklab/markdownlint-cli
|
|
|
|
commands:
|
|
|
|
- markdownlint 'README.md'
|
2020-11-01 23:03:33 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2021-09-19 19:48:16 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
2020-11-01 23:03:33 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2023-01-15 15:36:34 +00:00
|
|
|
name: build-container
|
2020-11-01 23:03:33 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2021-09-19 19:48:16 +00:00
|
|
|
- name: tags
|
|
|
|
image: thegeeklab/docker-autotag
|
|
|
|
environment:
|
|
|
|
DOCKER_AUTOTAG_FORCE_LATEST: True
|
|
|
|
DOCKER_AUTOTAG_IGNORE_PRERELEASE: True
|
|
|
|
DOCKER_AUTOTAG_OUTPUT_FILE: .tags
|
|
|
|
DOCKER_AUTOTAG_VERSION: ${DRONE_TAG}
|
|
|
|
|
|
|
|
- name: dryrun
|
2023-02-09 09:32:15 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:23
|
2021-09-19 19:48:16 +00:00
|
|
|
settings:
|
2023-01-15 15:36:34 +00:00
|
|
|
dockerfile: Dockerfile.multiarch
|
2021-09-19 19:48:16 +00:00
|
|
|
dry_run: true
|
|
|
|
platforms:
|
|
|
|
- linux/amd64
|
2023-01-15 15:36:34 +00:00
|
|
|
- linux/arm64
|
|
|
|
- linux/arm/v7
|
|
|
|
- linux/arm/v6
|
|
|
|
provenance: false
|
2021-09-19 19:48:16 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
|
|
|
depends_on:
|
|
|
|
- tags
|
|
|
|
|
|
|
|
- name: publish-dockerhub
|
2023-02-09 09:32:15 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:23
|
2021-09-19 19:48:16 +00:00
|
|
|
settings:
|
2023-01-15 15:36:34 +00:00
|
|
|
dockerfile: Dockerfile.multiarch
|
2021-09-19 19:48:16 +00:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
platforms:
|
2023-01-15 15:36:34 +00:00
|
|
|
- linux/amd64
|
|
|
|
- linux/arm64
|
|
|
|
- linux/arm/v7
|
|
|
|
- linux/arm/v6
|
|
|
|
provenance: false
|
2021-09-19 19:48:16 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
2023-01-15 15:36:34 +00:00
|
|
|
- dryrun
|
2021-09-19 19:48:16 +00:00
|
|
|
|
|
|
|
- name: publish-quay
|
2023-02-09 09:32:15 +00:00
|
|
|
image: thegeeklab/drone-docker-buildx:23
|
2021-09-19 19:48:16 +00:00
|
|
|
settings:
|
2023-01-15 15:36:34 +00:00
|
|
|
dockerfile: Dockerfile.multiarch
|
2021-09-19 19:48:16 +00:00
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
|
|
|
platforms:
|
2023-01-15 15:36:34 +00:00
|
|
|
- linux/amd64
|
|
|
|
- linux/arm64
|
2021-09-19 19:48:16 +00:00
|
|
|
- linux/arm/v7
|
2023-01-15 15:36:34 +00:00
|
|
|
- linux/arm/v6
|
|
|
|
provenance: false
|
2021-09-19 19:48:16 +00: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:
|
2023-01-15 15:36:34 +00:00
|
|
|
- dryrun
|
2021-01-18 19:49:15 +00:00
|
|
|
|
2020-11-01 23:03:33 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2021-09-19 19:48:16 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
2020-11-01 23:03:33 +00:00
|
|
|
|
|
|
|
depends_on:
|
2021-09-19 19:48:16 +00:00
|
|
|
- test
|
2020-11-01 23:03:33 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notifications
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2021-09-19 19:48:16 +00:00
|
|
|
- name: pushrm-dockerhub
|
|
|
|
image: chko/docker-pushrm:1
|
|
|
|
environment:
|
|
|
|
DOCKER_PASS:
|
|
|
|
from_secret: docker_password
|
|
|
|
DOCKER_USER:
|
|
|
|
from_secret: docker_username
|
|
|
|
PUSHRM_FILE: README.md
|
|
|
|
PUSHRM_SHORT: Custom Alpine image including a common toolset
|
|
|
|
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
|
|
|
|
- name: pushrm-quay
|
|
|
|
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 20:24:11 +00: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 19:48:16 +00:00
|
|
|
username:
|
|
|
|
from_secret: matrix_username
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
2020-11-01 23:03:33 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2021-09-19 19:48:16 +00:00
|
|
|
- refs/heads/main
|
|
|
|
- refs/tags/**
|
2020-11-01 23:03:33 +00:00
|
|
|
status:
|
2021-09-19 19:48:16 +00:00
|
|
|
- success
|
|
|
|
- failure
|
2020-11-01 23:03:33 +00:00
|
|
|
|
|
|
|
depends_on:
|
2023-01-15 15:36:34 +00:00
|
|
|
- build-container
|
2020-11-01 23:03:33 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: signature
|
2023-02-09 09:32:15 +00:00
|
|
|
hmac: d617b5f20a39e588746d4bbffe6b257578af7be614eb281945ad835e7bcebacd
|
2020-11-01 23:03:33 +00:00
|
|
|
|
|
|
|
...
|