All checks were successful
multibranch.test/pipeline/head This commit looks good
13 lines
No EOL
214 B
Groovy
13 lines
No EOL
214 B
Groovy
pipeline {
|
|
agent any
|
|
// triggers {
|
|
// pollSCM('')
|
|
// }
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo "🔨 Building branch: main"
|
|
}
|
|
}
|
|
}
|
|
} |