Update Jenkinsfile
Some checks failed
gitea/pkg-pil-squasher/pipeline/head There was a failure building this commit

This commit is contained in:
Molly Sophia 2023-12-21 08:10:34 +00:00
parent db84fbbcb6
commit f08dadc3d9

3
Jenkinsfile vendored
View File

@ -17,7 +17,7 @@ pipeline {
} }
stage('Build') { stage('Build') {
steps { steps {
sh 'makepkg --config jenkins-utils/makepkg-aarch64.conf --syncdeps --force' sh 'makepkg --config jenkins-utils/makepkg-aarch64.conf --syncdeps --force --noconfirm'
} }
} }
stage('Signature packages') { stage('Signature packages') {
@ -32,6 +32,7 @@ pipeline {
} }
stage('Upload packages') { stage('Upload packages') {
steps { steps {
sh 'sudo pacman -Syy'
sh 'python3 jenkins-utils/upload-pkg.py -d . -a aarch64' sh 'python3 jenkins-utils/upload-pkg.py -d . -a aarch64'
} }
} }