Files
Image-ElixirPhoenix-1.11.3/cicd/Jenkinsfile
Sciocatti 14a7aad88d
Some checks failed
Home Cluster Builds/Image-ElixirPhoenix-1.11.3/pipeline/head There was a failure building this commit
jnlp container creation testing.
2023-01-10 11:17:29 +02:00

16 lines
238 B
Groovy

#!groovy
pipeline {
agent {
kubernetes {
defaultContainer 'jnlp'
}
}
stages {
stage('Build') {
steps {
sh 'No build steps configured.'
}
}
}
}