created Jenkinsfile

This commit is contained in:
s460930 2020-11-30 23:14:50 +01:00
parent 8f5cae5801
commit 7541f302c3
2 changed files with 14 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.idea/
.idea
*.iml

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Test') {
steps {
echo 'Test pipeline'
}
}
}
}