erpnext/Jenkinsfile
epistemophiliac a644d2df3d CI revision 4: move pipeline logic to scripts/ci/jenkins-run.sh
Minimal Jenkinsfile so Jenkins must checkout repo before running CI.
Look for "erpnext CI revision 4" in build log to confirm latest code.
2026-06-16 18:31:32 -04:00

16 lines
282 B
Groovy

pipeline {
agent any
options { timestamps() }
stages {
stage('CI') {
steps {
sh 'bash scripts/ci/jenkins-run.sh'
}
}
}
post {
success {
archiveArtifacts artifacts: 'dist/docker-compose.coolify.yml', onlyIfSuccessful: true
}
}
}