add jenkinsfile for initial setup and testing
This commit is contained in:
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
checkout scm
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
failure {
|
||||
echo "Build Failed"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user