e2eproject/Jenkinsfile-test
2021-01-05 10:16:35 +05:30

11 lines
143 B
Plaintext

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