ansible-archlinux-docker/.drone.yml

293 lines
5.5 KiB
YAML
Raw Normal View History

2023-01-10 16:31:58 +00:00
---
kind: pipeline
type: kubernetes
name: linter
clone:
disable: true
2023-01-10 16:31:58 +00:00
platform:
os: linux
arch: amd64
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
2023-01-10 16:31:58 +00:00
- name: markdown lint
commands:
- markdownlint *.md
image: git.cryptic.systems/volker.raschek/markdownlint:0.33.0
2023-01-10 16:31:58 +00:00
resources:
limits:
cpu: 150
memory: 150M
- name: email-notification
environment:
SMTP_FROM_ADDRESS:
from_secret: smtp_from_address
SMTP_FROM_NAME:
from_secret: smtp_from_name
SMTP_HOST:
from_secret: smtp_host
SMTP_USERNAME:
from_secret: smtp_username
SMTP_PASSWORD:
from_secret: smtp_password
image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
2023-01-10 16:31:58 +00:00
resources:
limits:
cpu: 150
memory: 150M
when:
status:
- changed
- failure
trigger:
event:
exclude:
- tag
---
kind: pipeline
type: docker
name: dry-run-amd64
clone:
disable: true
2023-01-10 16:31:58 +00:00
depends_on:
- linter
platform:
os: linux
arch: amd64
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
2023-01-10 16:31:58 +00:00
- name: build
image: docker.io/plugins/docker:20.10.9
2023-01-10 16:31:58 +00:00
settings:
auto_tag: false
dockerfile: Dockerfile
2023-01-10 16:31:58 +00:00
dry_run: true
force_tag: true
no_cache: true
purge: true
mirror:
from_secret: docker_io_mirror
registry: git.cryptic.systems
repo: git.cryptic.systems/volker.raschek/ansible-archlinux
2023-01-10 16:31:58 +00:00
username:
from_secret: git_cryptic_systems_container_registry_user
2023-01-10 16:31:58 +00:00
password:
from_secret: git_cryptic_systems_container_registry_password
2023-01-10 16:31:58 +00:00
- name: email-notification
environment:
SMTP_FROM_ADDRESS:
from_secret: smtp_from_address
SMTP_FROM_NAME:
from_secret: smtp_from_name
SMTP_HOST:
from_secret: smtp_host
SMTP_USERNAME:
from_secret: smtp_username
SMTP_PASSWORD:
from_secret: smtp_password
image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
2023-01-10 16:31:58 +00:00
when:
status:
- changed
- failure
trigger:
branch:
exclude:
- master
event:
- pull_request
- push
repo:
- volker.raschek/ansible-archlinux-docker
---
kind: pipeline
type: docker
name: latest-amd64
clone:
disable: true
2023-01-10 16:31:58 +00:00
platform:
os: linux
arch: amd64
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
2023-01-10 16:31:58 +00:00
- name: build
image: docker.io/plugins/docker:20.10.9
2023-01-10 16:31:58 +00:00
settings:
dockerfile: Dockerfile
auto_tag: false
tags: latest-amd64
repo: volkerraschek/ansible-archlinux
username:
from_secret: container_image_registry_user
password:
from_secret: container_image_registry_password
no_cache: true
- name: email-notification
environment:
SMTP_FROM_ADDRESS:
from_secret: smtp_from_address
SMTP_FROM_NAME:
from_secret: smtp_from_name
SMTP_HOST:
from_secret: smtp_host
SMTP_USERNAME:
from_secret: smtp_username
SMTP_PASSWORD:
from_secret: smtp_password
image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
2023-01-10 16:31:58 +00:00
when:
status:
- changed
- failure
depends_on:
- linter
trigger:
branch:
- master
event:
- cron
- push
repo:
- volker.raschek/ansible-archlinux-docker
---
kind: pipeline
type: kubernetes
name: latest-manifest
clone:
disable: true
2023-01-10 16:31:58 +00:00
depends_on:
- latest-amd64
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
2023-01-10 16:31:58 +00:00
- name: build-manifest
image: docker.io/plugins/manifest:latest
settings:
auto_tag: false
ignore_missing: true
spec: manifest.tmpl
username:
from_secret: container_image_registry_user
password:
from_secret: container_image_registry_password
- name: email-notification
environment:
SMTP_FROM_ADDRESS:
from_secret: smtp_from_address
SMTP_FROM_NAME:
from_secret: smtp_from_name
SMTP_HOST:
from_secret: smtp_host
SMTP_USERNAME:
from_secret: smtp_username
SMTP_PASSWORD:
from_secret: smtp_password
image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
2023-01-10 16:31:58 +00:00
resources:
limits:
cpu: 150
memory: 150M
when:
status:
- changed
- failure
trigger:
branch:
- master
event:
- cron
- push
repo:
- volker.raschek/ansible-archlinux-docker
---
kind: pipeline
type: kubernetes
name: latest-sync
2023-01-10 16:31:58 +00:00
clone:
disable: true
depends_on:
- latest-manifest
2023-01-10 16:31:58 +00:00
steps:
- name: clone
image: git.cryptic.systems/volker.raschek/git:1.2.1
- name: latest-sync
commands:
- skopeo sync --all --src=docker --src-creds=$SRC_CRED_USERNAME:$SRC_CRED_PASSWORD --dest=docker --dest-creds=$DEST_CRED_USERNAME:$DEST_CRED_PASSWORD git.cryptic.systems/volker.raschek/ansible-archlinux docker.io/volkerraschek
2023-01-10 16:31:58 +00:00
environment:
SRC_CRED_USERNAME:
from_secret: git_cryptic_systems_container_registry_user
SRC_CRED_PASSWORD:
from_secret: git_cryptic_systems_container_registry_password
DEST_CRED_USERNAME:
2023-01-10 16:31:58 +00:00
from_secret: container_image_registry_user
DEST_CRED_PASSWORD:
2023-01-10 16:31:58 +00:00
from_secret: container_image_registry_password
image: quay.io/skopeo/stable:v1.11.2
2023-01-10 16:31:58 +00:00
- name: email-notification
environment:
SMTP_FROM_ADDRESS:
from_secret: smtp_from_address
SMTP_FROM_NAME:
from_secret: smtp_from_name
SMTP_HOST:
from_secret: smtp_host
SMTP_USERNAME:
from_secret: smtp_username
SMTP_PASSWORD:
from_secret: smtp_password
image: git.cryptic.systems/volker.raschek/drone-email:0.1.2
2023-01-10 16:31:58 +00:00
resources:
limits:
cpu: 150
memory: 150M
when:
status:
- changed
- failure
trigger:
branch:
- master
2023-01-10 16:31:58 +00:00
event:
- cron
- push
2023-01-10 16:31:58 +00:00
repo:
- volker.raschek/markdownlint-docker