Add Jenkinsfile
Some checks failed
gitea/pkg-ncnn-git/pipeline/head There was a failure building this commit

Signed-off-by: Molly Sophia <mollysophia379@gmail.com>
This commit is contained in:
Molly Sophia 2023-12-21 14:43:57 +08:00
parent a7fd985ad6
commit b27ceb360b
3 changed files with 47 additions and 3 deletions

View File

@ -3,8 +3,7 @@ pkgbase = ncnn-git
pkgver = 20231027.r9.g31e315981
pkgrel = 1
url = https://github.com/Tencent/ncnn
arch = i686
arch = x86_64
arch = aarch64
license = BSD
makedepends = git
makedepends = cmake

45
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,45 @@
pipeline {
agent {
label 'aarch64 && archlinux'
}
stages {
stage('Download Config') {
steps {
dir('jenkins-utils') {
git 'https://gitlab.classfun.cn:4443/renegade-project/jenkins-utils'
}
}
}
stage('Cleanup packages') {
steps {
sh 'rm -f *.pkg.tar.*'
}
}
stage('Build') {
steps {
sh 'sudo pacman -Syy'
sh 'makepkg --config jenkins-utils/makepkg-aarch64.conf --syncdeps --force --noconfirm'
}
}
stage('Signature packages') {
steps {
withCredentials([
file(credentialsId: 'gpg-file', variable: 'GPG_FILE'),
string(credentialsId: 'gpg-secret', variable: 'GPG_SECRET')
]) {
sh 'python3 jenkins-utils/sign-pkg.py -d . -k "$GPG_FILE" -p "$GPG_SECRET"'
}
}
}
stage('Upload packages') {
steps {
sh 'python3 jenkins-utils/upload-pkg.py -d . -a aarch64'
}
}
stage('Archive') {
steps {
archiveArtifacts artifacts: '*.pkg.tar.*', fingerprint: true
}
}
}
}

View File

@ -14,7 +14,7 @@ makedepends=('git' 'cmake' 'vulkan-icd-loader' 'protobuf' 'vulkan-headers')
optdepends=('protobuf: for onnx2ncnn')
conflicts=('ncnn')
provides=('ncnn')
arch=('i686' 'x86_64')
arch=('aarch64')
source=("git+https://github.com/Tencent/ncnn.git"
"git+https://github.com/KhronosGroup/glslang"
"git+https://github.com/pybind/pybind11")