This commit is contained in:
parent
e94767222f
commit
47be08bcf3
2 changed files with 22 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,4 +1,3 @@
|
||||||
PKGBUILD
|
PKGBUILD
|
||||||
.SRCINFO
|
.SRCINFO
|
||||||
.gitignore
|
.gitignore
|
||||||
*
|
|
||||||
|
|
|
||||||
22
.woodpecker.yml
Normal file
22
.woodpecker.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue