Create Jenkinsfile

This commit is contained in:
dmwangt 2020-06-26 10:40:56 -04:00 committed by GitHub
parent 149960dcc6
commit 5a9bdec94a
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 {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}