remove Jenkinsfile and update .SRCINFO

This commit is contained in:
BigfootACA 2024-04-29 16:51:08 +08:00
parent ee26874eaf
commit 37439927f7
2 changed files with 10 additions and 57 deletions

View File

@ -1,5 +1,5 @@
pkgbase = linux-sm8550
pkgver = 6.7.0.rc3.86bf60e055ae
pkgbase = linux-ayn-odin2-edge
pkgver = 6.8.0.cc6089c03c04
pkgrel = 1
url = https://github.com/edk2-porting/linux-next/
arch = aarch64
@ -12,35 +12,33 @@ pkgbase = linux-sm8550
makedepends = git
makedepends = uboot-tools
makedepends = dtc
makedepends = aarch64-linux-gnu-gcc
makedepends = arm-linux-gnueabihf-gcc
options = !strip
source = git+https://gitmirrors.classfun.cn:4443/edk2-porting/linux-next.git
source = defconfig
source = git+https://gitea.classfun.cn:4443/renegade-project/linux-next.git#branch=ci/odin2/edge
source = linux.preset
source = linux.install
source = 60-linux.hook
source = 90-linux.hook
md5sums = SKIP
md5sums = 06bfb45716bf7f0b0c75219ebb36d44d
md5sums = 86d4a35722b5410e3b29fc92dae15d4b
md5sums = 9c795aa7ae26de6c214c20e878ee61bf
md5sums = 0a5f16bfec6ad982a2f6782724cca8ba
md5sums = 3dc88030a8f2f5a5f97266d99b149f77
sha1sums = SKIP
sha1sums = 33a0fad7a64e4d402cd6af04d0890f618d573081
sha1sums = 937f93aa6d1a14babea9ff7de12aa2c73763e675
sha1sums = cf150e02705c4ba0af34886e50e40e266dd22039
sha1sums = 0fb7ac9f742f3b7dec37c2778e1830b8ce588f1b
sha1sums = 3b0160191978ebd905891211ef8abe1c17dab9ad
sha256sums = SKIP
sha256sums = c5b1680e21de96b42be7fb57821e82ec3b2d5d6097388f224c3501e5f473539d
sha256sums = 66644820faa950a5fc59181f5aefcbed6d7ed652b29aee69979a2be2a032025d
sha256sums = c5d6f202fad3cb5e4842bc7d06ed7156ae4326d3d6fbf7439e3fbe2ad60514cc
sha256sums = 452b8d4d71e1565ca91b1bebb280693549222ef51c47ba8964e411b2d461699c
sha256sums = 71df1b18a3885b151a3b9d926a91936da2acc90d5e27f1ad326745779cd3759d
sha512sums = SKIP
sha512sums = e88581c675d32c6872bfe723e81c53db252d223b3a9166e9320f7dbb52ec5ca63f4878e7921aae1853c369ae16f6b40374b3dc8701d9c19bedb8df1e620ff671
sha512sums = a492aae17ee4a316ce03faf9f1b284b2529c485f4b092cc4a1f865a6c68d482fd356fd30efa296c116975a3bdf3922f5bf03912a8d0e76f4ab24aa6ab9f8c276
sha512sums = e0834ac1a5d67aff61c94c057b343b912cea2eae8563874f0938024fdc40d7ac528762a83b6a3117ef89dc787869e5ce10ec7329ba02eb46299e45b5a0a1ae6b
sha512sums = 6b57a66b870b2f525e2dedd8f224b89474fd4ec6ea18484b0a67a1a2b9a4fc95d025cac181504406ea42a35d6c1b184c0d4e38c92815022935fc55746c69c7c1
sha512sums = b2cdb620fcc6f0b430b0cf0c844887c2c1e290844ea330750cad52c9ec04e835ead973b664c7613d147037c388120affe97dfd2f2e0f9ae224db52aaa4cb8814
pkgname = linux-sm8550
pkgname = linux-ayn-odin2-edge
pkgname = linux-sm8550-headers
pkgname = linux-ayn-odin2-edge-headers

45
Jenkinsfile vendored
View File

@ -1,45 +0,0 @@
pipeline {
agent {
label 'x86_64 && virtual && archlinux'
}
stages {
stage('Download Config') {
steps {
dir('jenkins-utils') {
git 'https://gitea.classfun.cn:4443/ci/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: 'ci-gpg-file', variable: 'GPG_FILE'),
string(credentialsId: 'ci-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
}
}
}
}