alpine/.drone.yml

352 lines
6.4 KiB
YAML
Raw Normal View History

2020-10-28 09:05:49 +01:00
---
kind: pipeline
name: test
platform:
os: linux
arch: amd64
steps:
- name: markdownlint
image: thegeeklab/markdownlint-cli
commands:
- markdownlint 'README.md'
2020-10-28 09:17:36 +01:00
trigger:
ref:
- refs/heads/main
2020-10-28 09:17:36 +01:00
- refs/tags/**
2021-01-10 15:19:12 +01:00
- refs/pull/**
2020-10-28 09:17:36 +01:00
2020-02-22 16:21:17 +01:00
---
kind: pipeline
2021-01-10 15:19:12 +01:00
name: build-container-amd64
2020-02-22 16:21:17 +01:00
platform:
os: linux
arch: amd64
steps:
- name: tags
image: thegeeklab/docker-autotag
2021-01-09 23:40:11 +01:00
environment:
DOCKER_AUTOTAG_FORCE_LATEST: True
DOCKER_AUTOTAG_IGNORE_PRERELEASE: True
DOCKER_AUTOTAG_OUTPUT_FILE: .tags
DOCKER_AUTOTAG_SUFFIX: amd64
DOCKER_AUTOTAG_VERSION: ${DRONE_TAG}
2021-01-09 23:40:11 +01:00
2020-02-22 16:21:17 +01:00
- name: dryrun
2021-01-18 21:10:57 +01:00
image: thegeeklab/drone-docker-buildx:20
2021-01-10 21:52:12 +01:00
settings:
dockerfile: Dockerfile.amd64
2021-01-10 21:52:12 +01:00
dry_run: true
password:
from_secret: docker_password
platforms:
- linux/amd64
2021-01-18 21:10:57 +01:00
repo: thegeeklab/${DRONE_REPO_NAME}
2021-01-10 21:52:12 +01:00
username:
from_secret: docker_username
2020-02-22 16:21:17 +01:00
when:
ref:
- refs/pull/**
2021-01-09 23:52:31 +01:00
depends_on:
- tags
2020-05-04 19:47:03 +02:00
2020-08-30 15:37:45 +02:00
- name: publish-dockerhub
2021-01-18 21:10:57 +01:00
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: Dockerfile.amd64
password:
2020-02-22 16:21:17 +01:00
from_secret: docker_password
2021-01-18 21:10:57 +01:00
repo: thegeeklab/${DRONE_REPO_NAME}
username:
2020-02-22 16:21:17 +01:00
from_secret: docker_username
2020-08-30 15:37:45 +02:00
when:
ref:
- refs/heads/main
2020-08-30 15:37:45 +02:00
- refs/tags/**
depends_on:
- tags
2020-02-22 16:21:17 +01:00
2021-01-18 21:10:57 +01:00
- name: publish-quay
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: 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/**
depends_on:
- tags
2021-01-10 15:19:12 +01:00
trigger:
ref:
- refs/heads/main
- refs/tags/**
- refs/pull/**
depends_on:
- test
---
kind: pipeline
2021-01-10 15:22:47 +01:00
name: build-container-arm64
2021-01-10 15:19:12 +01:00
platform:
os: linux
arch: amd64
steps:
- name: tags
image: thegeeklab/docker-autotag
2021-01-10 15:19:12 +01:00
environment:
DOCKER_AUTOTAG_FORCE_LATEST: True
DOCKER_AUTOTAG_IGNORE_PRERELEASE: True
DOCKER_AUTOTAG_OUTPUT_FILE: .tags
DOCKER_AUTOTAG_SUFFIX: arm64
DOCKER_AUTOTAG_VERSION: ${DRONE_TAG}
2021-01-10 15:19:12 +01:00
- name: dryrun
2021-01-18 21:10:57 +01:00
image: thegeeklab/drone-docker-buildx:20
2021-01-10 21:52:12 +01:00
settings:
dockerfile: Dockerfile.arm64
2021-01-10 21:52:12 +01:00
dry_run: true
password:
from_secret: docker_password
platforms:
- linux/arm64/v8
2021-01-18 21:10:57 +01:00
repo: thegeeklab/${DRONE_REPO_NAME}
2021-01-10 21:52:12 +01:00
username:
from_secret: docker_username
2021-01-10 15:19:12 +01:00
when:
ref:
- refs/pull/**
depends_on:
- tags
2021-01-10 15:19:12 +01:00
- name: publish-dockerhub
2021-01-18 21:10:57 +01:00
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: Dockerfile.arm64
password:
2021-01-10 15:19:12 +01:00
from_secret: docker_password
2021-01-18 21:10:57 +01:00
repo: thegeeklab/${DRONE_REPO_NAME}
username:
2021-01-10 15:19:12 +01:00
from_secret: docker_username
when:
ref:
- refs/heads/main
- refs/tags/**
depends_on:
- tags
2020-02-22 16:21:17 +01:00
2021-01-18 21:10:57 +01:00
- name: publish-quay
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: 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/**
depends_on:
- tags
2020-10-17 16:08:36 +02:00
trigger:
ref:
- refs/heads/main
2021-01-10 15:19:12 +01:00
- refs/tags/**
2020-10-17 16:08:36 +02:00
- refs/pull/**
2021-01-10 15:19:12 +01:00
depends_on:
- test
---
kind: pipeline
2021-01-10 15:22:47 +01:00
name: build-container-arm
2021-01-10 15:19:12 +01:00
platform:
os: linux
arch: amd64
steps:
- name: tags
image: thegeeklab/docker-autotag
2021-01-10 15:19:12 +01:00
environment:
DOCKER_AUTOTAG_FORCE_LATEST: True
DOCKER_AUTOTAG_IGNORE_PRERELEASE: True
DOCKER_AUTOTAG_OUTPUT_FILE: .tags
DOCKER_AUTOTAG_SUFFIX: arm
DOCKER_AUTOTAG_VERSION: ${DRONE_TAG}
2021-01-10 15:19:12 +01:00
- name: dryrun
2021-01-18 21:10:57 +01:00
image: thegeeklab/drone-docker-buildx:20
2021-01-10 21:52:12 +01:00
settings:
dockerfile: Dockerfile.arm
2021-01-10 21:52:12 +01:00
dry_run: true
password:
from_secret: docker_password
platforms:
- linux/arm/v7
2021-01-18 21:10:57 +01:00
repo: thegeeklab/${DRONE_REPO_NAME}
2021-01-10 21:52:12 +01:00
username:
from_secret: docker_username
2021-01-10 15:19:12 +01:00
when:
ref:
- refs/pull/**
depends_on:
- tags
2021-01-10 15:19:12 +01:00
- name: publish-dockerhub
2021-01-18 21:10:57 +01:00
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: Dockerfile.arm
password:
2021-01-10 15:19:12 +01:00
from_secret: docker_password
2021-01-18 21:10:57 +01:00
repo: thegeeklab/${DRONE_REPO_NAME}
username:
2021-01-10 15:19:12 +01:00
from_secret: docker_username
when:
ref:
- refs/heads/main
- refs/tags/**
depends_on:
- tags
2021-01-18 21:10:57 +01:00
- name: publish-quay
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: 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/**
depends_on:
- tags
2021-01-10 15:19:12 +01:00
trigger:
ref:
- refs/heads/main
2020-10-17 16:08:36 +02:00
- refs/tags/**
2021-01-10 15:19:12 +01:00
- refs/pull/**
2020-10-17 16:08:36 +02:00
2020-10-28 09:17:36 +01:00
depends_on:
- test
2020-02-22 16:21:17 +01:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
2021-01-10 15:19:12 +01:00
- name: manifest-dockerhub
image: plugins/manifest
settings:
ignore_missing: true
password:
from_secret: docker_password
spec: manifest.tmpl
username:
from_secret: docker_username
when:
status:
- success
2021-01-18 21:10:57 +01:00
- name: manifest-quay
image: plugins/manifest
settings:
ignore_missing: true
password:
from_secret: quay_password
spec: manifest-quay.tmpl
username:
from_secret: quay_username
when:
status:
- success
2020-08-30 16:07:37 +02:00
- name: pushrm-dockerhub
pull: always
2020-08-28 09:03:09 +02:00
image: chko/docker-pushrm:1
2020-02-22 16:21:17 +01:00
environment:
2020-08-28 09:36:02 +02:00
DOCKER_PASS:
from_secret: docker_password
DOCKER_USER:
2020-02-22 16:21:17 +01:00
from_secret: docker_username
2020-09-02 21:07:49 +02:00
PUSHRM_FILE: README.md
PUSHRM_SHORT: Rootless Alpine base image
2021-01-18 21:10:57 +01: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}
2020-08-30 16:07:37 +02:00
when:
status:
- success
2020-02-22 16:21:17 +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
when:
status:
- success
- failure
trigger:
ref:
- refs/heads/main
2020-02-22 16:21:17 +01:00
- refs/tags/**
status:
- success
- failure
depends_on:
2021-01-10 15:22:47 +01:00
- build-container-amd64
- build-container-arm64
- build-container-arm
2020-02-22 16:21:17 +01:00
2021-01-10 15:27:29 +01:00
---
kind: signature
2021-01-18 21:10:57 +01:00
hmac: b461e1964e0b2ac5b9154b81fa293d6dc99a082e63987d90a4e441b1667d26c8
2021-01-10 15:27:29 +01:00
2020-02-22 16:21:17 +01:00
...