Added Jenkinsfile

This commit is contained in:
Suman Dutta 2022-09-16 12:14:28 +00:00
parent 4e8166eaf3
commit 79045e4c26

19
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,19 @@
pipeline {
agent {
node {
label 'git'
}
}
stages {
stage('git pull') {
steps {
dir(path: 'https://git.sentientgeeks.us/SentientGeeks/') {
git(url: 'https://git.sentientgeeks.us/SentientGeeks/LocationCalculator.git', branch: 'API', poll: true)
}
}
}
}
}