improve CI with new builder container

This commit is contained in:
Luca Bilke 2024-02-10 18:32:00 +01:00
parent 9a6fa10bfd
commit 258bd68d74
No known key found for this signature in database
GPG Key ID: AD6630D0A1E650AC
1 changed files with 22 additions and 26 deletions

View File

@ -4,13 +4,9 @@ when:
steps:
build:
image: gcc
environment:
- BUILD_DEPS=libxcb-util-dev
commands: |
apt-get update
apt-get install -y $${BUILD_DEPS}
make install DESTDIR="$${CI_WORKSPACE}/pkg" PREFIX="/usr"
image: git.snaile.de/snailed/xbps-builder:latest
commands:
- make install DESTDIR="$${CI_WORKSPACE}/pkg" PREFIX="/usr"
package-xbps:
image: ghcr.io/void-linux/void-musl-busybox
@ -27,20 +23,20 @@ steps:
-c "$${CI_COMMIT_MESSAGE}" \
"$${CI_WORKSPACE}/pkg"
package-targz:
image: alpine
commands: |
tar czf $${CI_REPO_NAME}-$${CI_COMMIT_TAG}.tar.gz --directory=$${CI_WORKSPACE}/pkg .
publish:
image: woodpeckerci/plugin-gitea-release
settings:
base_url: https://git.snaile.de
files:
- "${CI_REPO_NAME}-${CI_COMMIT_TAG}.tar.gz"
api_key:
from_secret: gitea_release
target: main
# package-targz:
# image: alpine
# commands:
# - tar czf $${CI_REPO_NAME}-$${CI_COMMIT_TAG}.tar.gz --directory=$${CI_WORKSPACE}/pkg .
#
# publish:
# image: woodpeckerci/plugin-gitea-release
# settings:
# base_url: https://git.snaile.de
# files:
# - "${CI_REPO_NAME}-${CI_COMMIT_TAG}.tar.gz"
# api_key:
# from_secret: gitea_release
# target: main
publish-xbps:
image: ghcr.io/void-linux/void-musl-busybox
@ -52,8 +48,8 @@ steps:
volumes:
- /var/www/xbps:/target
- /etc/woodpecker/:/etc/woodpecker:ro
commands: |
export XBPS_TARGET_ARCH
mv $${CI_REPO_NAME}-$${CI_COMMIT_TAG}_1.x86_64.xbps /target
xbps-rindex -a /target/$${CI_REPO_NAME}-$${CI_COMMIT_TAG}_1.x86_64.xbps
xbps-rindex -S --signedby "$${CI_COMMIT_AUTHOR} <$${CI_COMMIT_AUTHOR_EMAIL}>" --privkey /etc/woodpecker/privkey.pem /target/$${CI_REPO_NAME}-$${CI_COMMIT_TAG}_1.x86_64.xbps
commands:
- export XBPS_TARGET_ARCH
- mv $${CI_REPO_NAME}-$${CI_COMMIT_TAG}_1.x86_64.xbps /target
- xbps-rindex -a /target/$${CI_REPO_NAME}-$${CI_COMMIT_TAG}_1.x86_64.xbps
- xbps-rindex -S --signedby "$${CI_COMMIT_AUTHOR} <$${CI_COMMIT_AUTHOR_EMAIL}>" --privkey /etc/woodpecker/privkey.pem /target/$${CI_REPO_NAME}-$${CI_COMMIT_TAG}_1.x86_64.xbps