ci: output to different architectures instead
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/push/woodpecker Pipeline was successful
Details
parent
5256878b9c
commit
7aa4a0ec88
|
@ -30,12 +30,16 @@ pipeline:
|
|||
- "echo 'builder ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers"
|
||||
- su builder
|
||||
# Build the package
|
||||
- MAKEFLAGS="-j$(nproc)" makepkg -s --noconfirm --needed CFLAGS="-O3 -flto -march=${ARCH}"
|
||||
- >
|
||||
MAKEFLAGS="-j$(nproc)"
|
||||
makepkg -s --noconfirm --needed
|
||||
CFLAGS="-O3 -flto -march=${ARCH}"
|
||||
CARCH="x86_64_${ARCH}"
|
||||
|
||||
publish:
|
||||
image: 'curlimages/curl'
|
||||
commands:
|
||||
# Publish the package
|
||||
- 'curl -s -XPOST -H "X-API-KEY: $API_KEY" -T "$(ls *.pkg*)" https://arch.r8r.be/jjr-${ARCH}/publish'
|
||||
- 'curl -s -XPOST -H "X-API-KEY: $API_KEY" -T "$(ls *.pkg*)" https://arch.r8r.be/jjr/publish'
|
||||
secrets:
|
||||
- api_key
|
||||
|
|
9
PKGBUILD
9
PKGBUILD
|
@ -4,7 +4,12 @@ pkgname=jjr-st
|
|||
pkgver=0.8.8
|
||||
pkgrel=2
|
||||
pkgdesc="My build of the st terminal"
|
||||
arch=("x86_64" "aarch64")
|
||||
arch=(
|
||||
"x86_64"
|
||||
"x86_64_tigerlake"
|
||||
"x86_64_skylake"
|
||||
"aarch64"
|
||||
)
|
||||
|
||||
url="https://git.rustybever.be/Chewing_Bever/st"
|
||||
license=("MIT")
|
||||
|
@ -50,3 +55,5 @@ package() {
|
|||
# install $installopts "$docdir" README.terminfo.rst
|
||||
# install $installopts "$shrdir/$pkgname" "$_sourcedir/st.info"
|
||||
}
|
||||
|
||||
# vim: ft=bash
|
||||
|
|
Loading…
Reference in New Issue