Assignment for Location Calculation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
285 B

  1. pipeline {
  2. agent any
  3. stages {
  4. stage('git pull') {
  5. steps {
  6. dir(path: 'https://git.sentientgeeks.us/SentientGeeks/') {
  7. git(url: 'https://git.sentientgeeks.us/SentientGeeks/LocationCalculator.git', branch: 'API', poll: true)
  8. }
  9. }
  10. }
  11. }
  12. }