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
Compare commits
merge into: SentientGeeks:master
SentientGeeks:API
SentientGeeks:master
...
pull from: SentientGeeks:API
SentientGeeks:API
SentientGeeks:master
5 Commits
master
...
API
Author
SHA1
Message
Date
Suman Dutta
8c797d4a88
Added Jenkinsfile
2 years ago
Suman Dutta
f379fc94f4
Added Jenkinsfile
2 years ago
Suman Dutta
7c0dd07438
Added Jenkinsfile
2 years ago
Suman Dutta
0ea0596026
Added Jenkinsfile
2 years ago
Suman Dutta
79045e4c26
Added Jenkinsfile
2 years ago
1 changed files
with
20 additions
and
0 deletions
Split View
Diff Options
Show Stats
+20
-0
Jenkinsfile
+ 20
- 0
Jenkinsfile
View File
@ -0,0 +1,20 @@
pipeline {
agent any
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)
}
}
}
stage('') {
steps {
dotnetPublish(workDirectory: '/var/lib/jenkins/workspace/LocationCalculator_API/API')
}
}
}
}
Write
Preview
Loading…
Cancel
Save