refactor: modernize drone config #1
2
.drone.env
Normal file
2
.drone.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# renovate: datasource=github-releases depName=OpenPrinting/cups
|
||||||
|
export CUPS_VERSION="${CUPS_VERSION:-v2.3.3op1}"
|
74
.drone.yml
74
.drone.yml
@ -10,59 +10,51 @@ steps:
|
|||||||
- name: build
|
- name: build
|
||||||
image: thegeeklab/rpmbuild
|
image: thegeeklab/rpmbuild
|
||||||
commands:
|
commands:
|
||||||
- "[ -z \"$BUILD_VERSION\" ] && BUILD_VERSION=2.3.3"
|
- source .drone.env
|
||||||
- wget -q https://github.com/apple/cups/releases/download/v$BUILD_VERSION/cups-$BUILD_VERSION-source.tar.gz
|
- wget -q https://github.com/OpenPrinting/cups/releases/download/v$CUPS_VERSION/cups-v$CUPS_VERSION-source.tar.gz
|
||||||
- rpmbuild -ta --without libusb1 cups-$BUILD_VERSION-source.tar.gz
|
- rpmbuild -ta --without libusb1 cups-${CUPS_VERSION##v}-source.tar.gz
|
||||||
environment:
|
|
||||||
BUILD_VERSION: ${DRONE_TAG##v}
|
|
||||||
|
|
||||||
- name: checksum
|
- name: checksum
|
||||||
image: alpine
|
image: thegee
|
||||||
commands:
|
commands:
|
||||||
- apk add --no-cache coreutils
|
- cd /drone/src/dist/RPMS/x86_64/ && sha256sum * > /drone/src/dist/sha256sum.txt
|
||||||
- sha256sum -b dist/RPMS/x86_64/* > dist/sha256sum.txt
|
|
||||||
|
|
||||||
- name: gpgsign
|
- name: changelog-generate
|
||||||
pull: always
|
image: thegeeklab/git-chglog
|
||||||
image: plugins/gpgsign:1
|
commands:
|
||||||
settings:
|
- git fetch -tq
|
||||||
detach_sign: true
|
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}
|
||||||
files:
|
depends_on:
|
||||||
- dist/RPMS/x86_64/*
|
- tags
|
||||||
key:
|
|
||||||
from_secret: gpgsign_key
|
|
||||||
passphrase:
|
|
||||||
from_secret: gpgsign_passphrase
|
|
||||||
|
|
||||||
- name: release
|
- name: changelog-format
|
||||||
|
image: thegeeklab/alpine-tools
|
||||||
|
commands:
|
||||||
|
- prettier CHANGELOG.md
|
||||||
|
- prettier -w CHANGELOG.md
|
||||||
|
depends_on:
|
||||||
|
- changelog-generate
|
||||||
|
|
||||||
|
- name: publish-gitea
|
||||||
image: plugins/gitea-release
|
image: plugins/gitea-release
|
||||||
settings:
|
settings:
|
||||||
api_key:
|
api_key:
|
||||||
from_secret: gitea_token
|
from_secret: gitea_token
|
||||||
base_url: https://gitea.rknet.org
|
base_url: https://gitea.rknet.org
|
||||||
files:
|
files:
|
||||||
- dist/RPMS/x86_64/*
|
- /drone/src/dist/RPMS/x86_64/*
|
||||||
- dist/sha256sum.txt
|
- /drone/src/dist/sha256sum.txt
|
||||||
|
note: CHANGELOG.md
|
||||||
|
overwrite: true
|
||||||
title: ${DRONE_TAG}
|
title: ${DRONE_TAG}
|
||||||
when:
|
when:
|
||||||
ref:
|
ref:
|
||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
|
|
||||||
- name: repository
|
trigger:
|
||||||
image: plugins/s3
|
|
||||||
settings:
|
|
||||||
access_key:
|
|
||||||
from_secret: s3_access_key
|
|
||||||
bucket: packages
|
|
||||||
endpoint: https://sp.rknet.org
|
|
||||||
path_style: true
|
|
||||||
secret_key:
|
|
||||||
from_secret: s3_secret_access_key
|
|
||||||
source: dist/RPMS/x86_64/*.rpm
|
|
||||||
strip_prefix: dist/RPMS/
|
|
||||||
target: /centos/7/
|
|
||||||
when:
|
|
||||||
ref:
|
ref:
|
||||||
|
- refs/heads/main
|
||||||
|
- refs/pull/**
|
||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
|
|
||||||
---
|
---
|
||||||
@ -75,7 +67,7 @@ platform:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: matrix
|
- name: matrix
|
||||||
image: plugins/matrix
|
image: thegeeklab/drone-matrix
|
||||||
settings:
|
settings:
|
||||||
homeserver:
|
homeserver:
|
||||||
from_secret: matrix_homeserver
|
from_secret: matrix_homeserver
|
||||||
@ -83,9 +75,13 @@ steps:
|
|||||||
from_secret: matrix_password
|
from_secret: matrix_password
|
||||||
roomid:
|
roomid:
|
||||||
from_secret: matrix_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 }}"
|
template: "Status: **{{ build.Status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.Link }}){{#if build.Branch}} ({{ build.Branch }}){{/if}} by {{ commit.Author }}<br/> Message: {{ commit.Message.Title }}"
|
||||||
username:
|
username:
|
||||||
from_secret: matrix_username
|
from_secret: matrix_username
|
||||||
|
when:
|
||||||
|
status:
|
||||||
|
- success
|
||||||
|
- failure
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
ref:
|
ref:
|
||||||
@ -100,6 +96,6 @@ depends_on:
|
|||||||
|
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: a48861856f45a5fea19c866058aa857abcdd77d604be1835d254407e7d7d0688
|
hmac: ef12dc4cc2bd5bdd48ad22c1671fbc838e4e3e40163b3a3a3b8c893d19ea7e19
|
||||||
|
|
||||||
...
|
...
|
||||||
|
4
renovate.json
Normal file
4
renovate.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": ["github>thegeeklab/renovate-presets:docker"]
|
||||||
|
}
|
Reference in New Issue
Block a user