alpine-tools/.drone.yml

177 lines
3.5 KiB
YAML
Raw Normal View History

2020-11-02 00:03:33 +01:00
---
kind: pipeline
name: test
platform:
os: linux
arch: amd64
steps:
2021-09-19 21:48:16 +02:00
- name: markdownlint
image: thegeeklab/markdownlint-cli
commands:
- markdownlint 'README.md'
2020-11-02 00:03:33 +01:00
trigger:
ref:
2021-09-19 21:48:16 +02:00
- refs/heads/main
- refs/tags/**
- refs/pull/**
2020-11-02 00:03:33 +01:00
---
kind: pipeline
name: build-container
2020-11-02 00:03:33 +01:00
platform:
os: linux
arch: amd64
steps:
2021-09-19 21:48:16 +02: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
image: thegeeklab/drone-docker-buildx:23
2021-09-19 21:48:16 +02:00
settings:
dockerfile: Dockerfile.multiarch
2021-09-19 21:48:16 +02:00
dry_run: true
platforms:
- linux/amd64
- linux/arm64
- linux/arm/v7
- linux/arm/v6
provenance: false
2021-09-19 21:48:16 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
when:
ref:
- refs/pull/**
depends_on:
- tags
- name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:23
2021-09-19 21:48:16 +02:00
settings:
dockerfile: Dockerfile.multiarch
2021-09-19 21:48:16 +02:00
password:
from_secret: docker_password
platforms:
- linux/amd64
- linux/arm64
- linux/arm/v7
- linux/arm/v6
provenance: false
2021-09-19 21:48:16 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
- refs/tags/**
depends_on:
- dryrun
2021-09-19 21:48:16 +02:00
- name: publish-quay
image: thegeeklab/drone-docker-buildx:23
2021-09-19 21:48:16 +02:00
settings:
dockerfile: Dockerfile.multiarch
2021-09-19 21:48:16 +02:00
password:
from_secret: quay_password
platforms:
- linux/amd64
- linux/arm64
2021-09-19 21:48:16 +02:00
- linux/arm/v7
- linux/arm/v6
provenance: false
2021-09-19 21:48:16 +02: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:
- dryrun
2021-01-18 20:49:15 +01:00
2020-11-02 00:03:33 +01:00
trigger:
ref:
2021-09-19 21:48:16 +02:00
- refs/heads/main
- refs/tags/**
- refs/pull/**
2020-11-02 00:03:33 +01:00
depends_on:
2021-09-19 21:48:16 +02:00
- test
2020-11-02 00:03:33 +01:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
2021-09-19 21:48:16 +02: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 21:24:11 +01: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 21:48:16 +02:00
username:
from_secret: matrix_username
when:
status:
- success
- failure
2020-11-02 00:03:33 +01:00
trigger:
ref:
2021-09-19 21:48:16 +02:00
- refs/heads/main
- refs/tags/**
2020-11-02 00:03:33 +01:00
status:
2021-09-19 21:48:16 +02:00
- success
- failure
2020-11-02 00:03:33 +01:00
depends_on:
- build-container
2020-11-02 00:03:33 +01:00
---
kind: signature
hmac: d617b5f20a39e588746d4bbffe6b257578af7be614eb281945ad835e7bcebacd
2020-11-02 00:03:33 +01:00
...