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