feat: publish arch packages
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/clippy Pipeline was successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Jef Roosens 2023-07-08 16:11:36 +02:00
parent bfb264e823
commit bf83357464
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
3 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,37 @@
matrix:
PLATFORM:
- 'linux/amd64'
# - linux/arm64
platform: ${PLATFORM}
branches: [ main ]
skip_clone: true
pipeline:
build:
image: 'menci/archlinuxarm:base-devel'
pull: true
commands:
- echo -e '[bur]\nServer = https://arch.r8r.be/$repo/$arch\nSigLevel = Optional' >> /etc/pacman.conf
# Update packages
- pacman -Syu --noconfirm
# Create non-root user to perform build & switch to their home
- groupadd -g 1000 builder
- useradd -mg builder builder
- chown -R builder:builder "$PWD"
- "echo 'builder ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers"
- su builder
- curl -OL "https://git.rustybever.be/Chewing_Bever/alex/raw/tag/$CI_COMMIT_TAG/PKGBUILD"
- makepkg -s --noconfirm --needed
when:
event: tag
publish:
image: 'curlimages/curl'
commands:
# Publish the package
- 'for pkg in $(ls -1 *.pkg*); do curl -XPOST -T "$pkg" -H "X-API-KEY: $VIETER_API_KEY" https://arch.r8r.be/bur/publish; done'
secrets:
- vieter_api_key
when:
event: tag