Some checks failed
Home Cluster Builds/Image-ElixirPhoenix-1.11.3/pipeline/head There was a failure building this commit
16 lines
238 B
Groovy
16 lines
238 B
Groovy
#!groovy
|
|
|
|
pipeline {
|
|
agent {
|
|
kubernetes {
|
|
defaultContainer 'jnlp'
|
|
}
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'No build steps configured.'
|
|
}
|
|
}
|
|
}
|
|
} |