Added CI configuration
ci/woodpecker/push/woodpecker Pipeline failed Details

dev
Jef Roosens 2022-01-02 11:00:02 +01:00
parent 41f72f3204
commit 4551a969c1
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
1 changed files with 26 additions and 0 deletions

26
.woodpecker.yml 100644
View File

@ -0,0 +1,26 @@
when:
branch: master
event: push
pipeline:
build:
image: 'archlinux:latest'
commands:
# Update packages
- pacman -Syu --needed --noconfirm base-devel
# 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
# Build the package
- MAKEFLAGS="-j$(nproc)" makepkg -s --noconfirm --needed
publish:
image: 'archlinux:latest'
commands:
# Publish the package
- 'curl -F "file=@$(ls *.pkg*)" -H "X-API-KEY: $API_KEY" https://pkgs.rustybever.be/api/publish'
secrets:
- api_key