develop #4

Merged
s460930 merged 29 commits from develop into master 2020-12-07 15:22:26 +01:00
2 changed files with 12 additions and 1 deletions
Showing only changes of commit fb19e6ec6a - Show all commits

2
.gitignore vendored
View File

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

11
Jenkinsfile vendored Normal file
View File

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