33 lines
843 B
YAML
33 lines
843 B
YAML
|
matrix:
|
||
|
PLATFORM:
|
||
|
- 'linux/amd64'
|
||
|
- 'linux/arm64'
|
||
|
|
||
|
platform: ${PLATFORM}
|
||
|
branches: ['master']
|
||
|
depends_on:
|
||
|
- 'vc'
|
||
|
|
||
|
pipeline:
|
||
|
build:
|
||
|
image: 'menci/archlinuxarm:base-devel'
|
||
|
commands:
|
||
|
# 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
|
||
|
# Build the package
|
||
|
- makepkg -s --noconfirm --needed
|
||
|
|
||
|
publish:
|
||
|
image: 'curlimages/curl'
|
||
|
secrets:
|
||
|
- 'vieter_api_key'
|
||
|
commands:
|
||
|
# 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'
|