Create Jenkinsfile

This commit is contained in:
BrahmanapallyNagaraju 2020-04-08 14:56:16 +05:30 committed by GitHub
parent 56f09331aa
commit af22f7f404
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,10 @@
pipeline {
stages {
stage("build") {
steps {
sh "pwd"
sh "ls -lrtha"
}
}
}
}