-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
57 lines (49 loc) · 1.16 KB
/
Jenkinsfile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env groovy
// @Library('jenkins-shared-library')
library identifier: 'jenkins-shared-library@master', retriever: modernSCM(
[
$class: 'GitSCMSource',
remote: 'https://github.com/golebu2020/mavenapp-jenkins-shared-library.git',
credentialsId: 'github-credentials'
]
)
def gv
// @Library('jenkins-shared-library')_
pipeline{
agent any
tools{
maven 'Maven'
}
stages{
stage ("init"){
steps{
script{
gv = load "script.groovy"
}
}
}
stage ("build jar"){
steps{
script{
buildJar()
}
}
}
stage ("build and push image"){
steps{
script{
buildImage "golebu2020/maven-repo:jma-10.0"
dockerLogin()
dockerPush "golebu2020/maven-repo:jma-10.0"
}
}
}
stage ("deploy"){
steps{
script{
gv.deployApp()
}
}
}
}
}