Debug CI pipeline

This commit is contained in:
Stefan Reimer 2023-08-15 14:25:39 +00:00
parent 50234738d0
commit 3efcc8148d
1 changed files with 4 additions and 3 deletions

View File

@ -11,9 +11,9 @@ def call(Map config=[:]) {
stage('Prepare') {
steps {
// pull tags
withCredentials([gitUsernamePassword(credentialsId: 'gitea-jenkins-user')]) {
sh 'git fetch -q --tags ${GIT_URL}'
}
//withCredentials([gitUsernamePassword(credentialsId: 'gitea-jenkins-user')]) {
// sh 'git fetch -q --tags ${GIT_URL}'
//}
// Optional project specific preparations
sh 'make prepare'
}
@ -22,6 +22,7 @@ def call(Map config=[:]) {
// Build using rootless podman
stage('Build') {
steps {
sh 'env'
sh 'make build'
}
}