crazy-pipeline-demos/Jenkinsfile

21 lines
261 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'printenv'
}
}
stage('Test') {
steps {
sh 'printenv'
}
}
stage('Deploy') {
steps {
sh 'printenv'
}
}
}
}