Hopefully made ci non-root stuff work
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Jef Roosens 2021-12-31 14:48:32 +01:00
parent 62104a16d9
commit 3be31d3ad7
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F

View file

@ -2,6 +2,13 @@ pipeline:
build:
image: 'archlinux:latest'
commands:
- pacman -Syu --needed --noconfirm base-devel
# Update packages
- pacman -Syu --needed --noconfirm base-devel sudo
# Create non-root user to perform build & switch to their home
- groupadd -g 1000 builder
- useradd -mg builder builder
- cd /home/builder
# Build the package
- makepkg -s
# Publish the package
- 'curl -F "file=@$(ls *.pkg*)" -H "X-API-KEY: $API_KEY" https://pkgs.rustybever.be/api/publish'