tools/.woodpecker/vls-arch.yml

44 lines
1.1 KiB
YAML

matrix:
PLATFORM:
- linux/amd64
# - linux/arm64
platform: ${PLATFORM}
when:
- path:
- 'vls/PKGBUILD'
- '.woodpecker/vls-arch.yml'
event: [push]
- event: [cron]
pipeline:
build:
image: 'git.rustybever.be/vieter-v/vieter-builder'
commands:
# Add the vieter repository so we can use the compiler
- echo -e '[vieter]\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
- cd vls
- makepkg -s --noconfirm --needed
when:
event: [push, cron]
publish:
image: 'curlimages/curl'
commands:
- cd vls
# 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/vieter/publish; done'
secrets:
- vieter_api_key
when:
event: [push, cron]