ium_464937/Jenkinsfile

10 lines
150 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'elo 420 v2'
}
}
}
}