e2eproject/Jenkinsfile
2021-01-08 16:23:28 +05:30

12 lines
161 B
Groovy

pipeline {
agent any
stages {
stage('Trigger Build') {
steps {
sh 'echo helloworld1231245123456ssss'
}
}
}
}