LocationCalculator/Jenkinsfile
2022-09-16 12:14:28 +00:00

19 lines
323 B
Groovy

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)
}
}
}
}
}