forked from microsoft/python-sample-vscode-flask-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjenkinsfile
More file actions
26 lines (26 loc) · 758 Bytes
/
jenkinsfile
File metadata and controls
26 lines (26 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pipeline {
agent { label 'jdk11' }
stages {
stage ('vcs') {
steps {
git url: 'https://github.com/Manipavan98/python-sample-vscode-flask-tutorial.git', branch : 'master'
}
}
stage ('artifactory') {
steps {
rtPipResolver (
id: "pip_resolver",
serverId: "JFROG_J",
repo: "default-pypi-local"
)
}
}
stage ('publish') {
steps {
rtPublishBuildInfo (
serverId: 'JFROG_J'
)
}
}
}
}