Browse Source

Added Jenkinsfile

API
Suman Dutta 2 years ago
parent
commit
79045e4c26
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      Jenkinsfile

+ 19
- 0
Jenkinsfile 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)
}
}
}
}
}

Loading…
Cancel
Save