diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..ba344cf --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,11 @@ +pipeline { + agent any + stages { + stage('start') { + steps { + powershell(script: 'echo "start building..."', encoding: 'utf-8', returnStatus: true) + } + } + + } +} \ No newline at end of file