15 lines
483 B
YAML
15 lines
483 B
YAML
pipeline:
|
|
build:
|
|
image: 'archlinux:latest'
|
|
commands:
|
|
# 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'
|