This website works better with JavaScript.
Home
Explore
Help
Sign In
SentientGeeks
/
LocationCalculator
Watch
8
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Added Jenkinsfile
API
Suman Dutta
2 years ago
parent
4e8166eaf3
commit
79045e4c26
1 changed files
with
19 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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)
}
}
}
}
}
Write
Preview
Loading…
Cancel
Save