initial commit

This commit is contained in:
Bulat Yusupov 2020-07-16 10:53:26 +03:00
parent 5ad3f5ce79
commit 9f653d471c

12
Jenkinsfile vendored Normal file
View file

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