Minimal Jenkinsfile so Jenkins must checkout repo before running CI. Look for "erpnext CI revision 4" in build log to confirm latest code.
16 lines
282 B
Groovy
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
|
|
}
|
|
}
|
|
}
|