This repository has been archived on 2023-11-07. You can view files and clone it, but cannot push or open issues or pull requests.
rpmbuild/.drone.yml

185 lines
3.3 KiB
YAML
Raw Normal View History

2020-10-28 09:05:50 +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:37 +01:00
trigger:
ref:
- refs/heads/main
2020-10-28 09:17:37 +01:00
- refs/pull/**
- refs/tags/**
2019-02-09 15:29:00 +01:00
---
kind: pipeline
2020-05-04 21:10:17 +02:00
name: build-container
2019-03-13 10:57:48 +01:00
platform:
os: linux
2019-03-14 13:39:27 +01:00
arch: amd64
2019-03-13 10:57:48 +01:00
steps:
2019-03-14 13:39:27 +01:00
- name: dryrun
2021-01-18 21:47:54 +01:00
image: thegeeklab/drone-docker-buildx:20
2019-03-14 13:39:27 +01:00
settings:
2020-02-22 17:41:02 +01:00
dockerfile: Dockerfile
2019-03-14 13:39:27 +01:00
dry_run: true
password:
from_secret: docker_password
2020-09-21 22:11:01 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-03-14 13:39:27 +01:00
username:
from_secret: docker_username
2020-02-22 17:41:02 +01:00
when:
ref:
- refs/pull/**
2019-03-14 13:39:27 +01:00
2020-05-04 21:10:17 +02:00
- name: tags
2020-09-21 22:11:01 +02:00
image: thegeeklab/docker-autotag
2020-05-04 21:10:17 +02:00
environment:
DOCKER_AUTOTAG_FORCE_LATEST: True
DOCKER_AUTOTAG_IGNORE_PRERELEASE: True
DOCKER_AUTOTAG_OUTPUT_FILE: .tags
DOCKER_AUTOTAG_VERSION: ${DRONE_TAG}
when:
ref:
- refs/heads/main
2020-05-04 21:10:17 +02:00
- refs/tags/**
2020-09-02 22:25:24 +02:00
depends_on:
- dryrun
2020-05-04 21:10:17 +02:00
2020-09-02 22:25:24 +02:00
- name: publish-dockerhub
2021-01-18 21:47:54 +01:00
image: thegeeklab/drone-docker-buildx:20
2019-03-14 13:39:27 +01:00
settings:
2020-02-22 17:41:02 +01:00
dockerfile: Dockerfile
2019-03-14 13:39:27 +01:00
password:
from_secret: docker_password
2020-09-21 22:11:01 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-03-14 13:39:27 +01:00
username:
from_secret: docker_username
2019-03-18 13:46:03 +01:00
when:
2020-02-22 17:41:02 +01:00
ref:
- refs/heads/main
2020-02-22 17:41:02 +01:00
- refs/tags/**
2020-09-02 22:25:24 +02:00
depends_on:
- tags
- name: publish-quay
2021-01-18 21:47:54 +01:00
image: thegeeklab/drone-docker-buildx:20
2020-09-02 22:25:24 +02:00
settings:
dockerfile: 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/main
2020-09-02 22:25:24 +02:00
- refs/tags/**
depends_on:
- tags
2020-02-22 17:41:02 +01:00
- name: publish-gitea
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_token
base_url: https://gitea.rknet.org
note: CHANGELOG.md
overwrite: true
title: ${DRONE_TAG}
when:
ref:
- refs/tags/**
2020-09-02 22:25:24 +02:00
depends_on:
- publish-dockerhub
- publish-quay
2019-03-14 13:39:27 +01:00
2020-06-11 14:56:29 +02:00
trigger:
ref:
- refs/heads/main
2020-06-11 14:56:29 +02:00
- refs/pull/**
- refs/tags/**
2020-10-28 09:17:37 +01:00
depends_on:
- test
2019-03-14 13:54:36 +01:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
2020-09-02 22:25:24 +02:00
- name: pushrm-dockerhub
pull: always
image: chko/docker-pushrm:1
2020-02-22 17:41:02 +01:00
environment:
2020-09-02 22:25:24 +02:00
DOCKER_PASS:
2020-02-22 17:41:02 +01:00
from_secret: docker_password
2020-09-02 22:25:24 +02:00
DOCKER_USER:
2020-02-22 17:41:02 +01:00
from_secret: docker_username
2020-09-02 22:25:24 +02:00
PUSHRM_FILE: README.md
PUSHRM_SHORT: CentOS 7 image to build RPM packages
2020-09-21 22:11:01 +02:00
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
2020-09-02 22:25:24 +02:00
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-02-22 17:41:02 +01:00
when:
status:
- success
2019-03-18 13:46:03 +01:00
- name: matrix
image: plugins/matrix
2019-03-14 13:54:36 +01:00
settings:
2020-02-22 17:41:02 +01:00
homeserver:
from_secret: matrix_homeserver
2019-03-14 13:54:36 +01:00
password:
from_secret: matrix_password
2020-02-22 17:41:02 +01:00
roomid:
from_secret: matrix_roomid
2019-03-14 13:54:36 +01:00
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
2019-03-18 13:46:03 +01:00
trigger:
2020-02-22 17:41:02 +01:00
ref:
- refs/heads/main
2020-02-22 17:41:02 +01:00
- refs/tags/**
2019-03-18 13:46:03 +01:00
status:
- success
- failure
2019-03-14 13:54:36 +01:00
depends_on:
2020-05-04 21:10:17 +02:00
- build-container
2020-02-22 17:41:02 +01:00
---
kind: signature
2021-01-18 21:47:54 +01:00
hmac: f3a932f626d5aab6054e52d4419f9b6eacd25e52dec3ab9a9f0335acd5433e73
2019-03-14 13:54:36 +01:00
2019-03-14 13:39:27 +01:00
...