refactor: moderniue drone config
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
This commit is contained in:
parent
0ee2d92880
commit
5532de7f2d
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}"
|
82
.drone.yml
82
.drone.yml
@ -7,62 +7,54 @@ platform:
|
||||
arch: amd64
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
- name: build
|
||||
image: thegeeklab/rpmbuild
|
||||
commands:
|
||||
- "[ -z \"$BUILD_VERSION\" ] && BUILD_VERSION=2.3.3"
|
||||
- wget -q https://github.com/apple/cups/releases/download/v$BUILD_VERSION/cups-$BUILD_VERSION-source.tar.gz
|
||||
- rpmbuild -ta --without libusb1 cups-$BUILD_VERSION-source.tar.gz
|
||||
environment:
|
||||
BUILD_VERSION: ${DRONE_TAG##v}
|
||||
- source .drone.env
|
||||
- wget -q https://github.com/OpenPrinting/cups/releases/download/v$CUPS_VERSION/cups-v$CUPS_VERSION-source.tar.gz
|
||||
- rpmbuild -ta --without libusb1 cups-${CUPS_VERSION##v}-source.tar.gz
|
||||
|
||||
- name: checksum
|
||||
image: alpine
|
||||
- name: checksum
|
||||
image: thegee
|
||||
commands:
|
||||
- apk add --no-cache coreutils
|
||||
- sha256sum -b dist/RPMS/x86_64/* > dist/sha256sum.txt
|
||||
- cd /drone/src/dist/RPMS/x86_64/ && sha256sum * > /drone/src/dist/sha256sum.txt
|
||||
|
||||
- name: gpgsign
|
||||
pull: always
|
||||
image: plugins/gpgsign:1
|
||||
settings:
|
||||
detach_sign: true
|
||||
files:
|
||||
- dist/RPMS/x86_64/*
|
||||
key:
|
||||
from_secret: gpgsign_key
|
||||
passphrase:
|
||||
from_secret: gpgsign_passphrase
|
||||
- name: changelog-generate
|
||||
image: thegeeklab/git-chglog
|
||||
commands:
|
||||
- git fetch -tq
|
||||
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}
|
||||
depends_on:
|
||||
- tags
|
||||
|
||||
- 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
|
||||
settings:
|
||||
api_key:
|
||||
from_secret: gitea_token
|
||||
base_url: https://gitea.rknet.org
|
||||
files:
|
||||
- dist/RPMS/x86_64/*
|
||||
- dist/sha256sum.txt
|
||||
- /drone/src/dist/RPMS/x86_64/*
|
||||
- /drone/src/dist/sha256sum.txt
|
||||
note: CHANGELOG.md
|
||||
overwrite: true
|
||||
title: ${DRONE_TAG}
|
||||
when:
|
||||
ref:
|
||||
- refs/tags/**
|
||||
|
||||
- name: repository
|
||||
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:
|
||||
trigger:
|
||||
ref:
|
||||
- refs/heads/main
|
||||
- refs/pull/**
|
||||
- refs/tags/**
|
||||
|
||||
---
|
||||
@ -74,8 +66,8 @@ platform:
|
||||
arch: amd64
|
||||
|
||||
steps:
|
||||
- name: matrix
|
||||
image: plugins/matrix
|
||||
- name: matrix
|
||||
image: thegeeklab/drone-matrix
|
||||
settings:
|
||||
homeserver:
|
||||
from_secret: matrix_homeserver
|
||||
@ -83,9 +75,13 @@ steps:
|
||||
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 }}"
|
||||
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:
|
||||
from_secret: matrix_username
|
||||
when:
|
||||
status:
|
||||
- success
|
||||
- failure
|
||||
|
||||
trigger:
|
||||
ref:
|
||||
@ -96,10 +92,10 @@ trigger:
|
||||
- failure
|
||||
|
||||
depends_on:
|
||||
- build
|
||||
- build
|
||||
|
||||
---
|
||||
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