chore: add vls stuff and some other things
ci/woodpecker/push/vls-arch Pipeline failed Details
ci/woodpecker/push/vlang-arch Pipeline was successful Details

main
Jef Roosens 2023-02-13 12:45:40 +01:00
parent 76afde56fb
commit d031f0cf7c
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
4 changed files with 44 additions and 3 deletions

View File

@ -7,8 +7,9 @@ platform: ${PLATFORM}
when:
path:
- 'vlang/PKGBUILD.vlang'
- '.woodpecker/vlang.yml'
- 'vlang/PKGBUILD'
- '.woodpecker/vlang-arch.yml'
event: [push]
pipeline:
build:
@ -25,11 +26,12 @@ pipeline:
- "echo 'builder ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers"
- su builder
- cd vlang
- makepkg -p PKGBUILD.vlang -s --noconfirm --needed
- makepkg -s --noconfirm --needed
publish:
image: 'curlimages/curl'
commands:
- cd vlang
# 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:

View File

@ -0,0 +1,39 @@
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
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