diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..5d4c853 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,11 @@ +pipeline { + agent any + + stages { + stage('Build') { + steps { + sh 'bash build.sh' + } + } + } +}