-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
140 lines (128 loc) · 4.66 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#!/usr/bin/groovy
@Library(['github.com/indigo-dc/jenkins-pipeline-library@1.2.3']) _
pipeline {
agent {
label 'docker-build'
}
environment {
dockerhub_repo = "deephdc/deep-oc-mods"
tf_ver = "2.0.0"
py_ver = "py3"
}
stages {
stage('Validate metadata') {
steps {
checkout scm
sh 'deep-app-schema-validator metadata.json'
}
}
stage('Docker image building') {
when {
anyOf {
branch 'master'
branch 'test'
buildingTag()
}
}
steps {
dir('check_oc_artifact') {
// clone checking scripts
git url: 'https://github.com/deephdc/deep-check_oc_artifact'
}
dir('deep-oc-user_app') {
// clone user application
checkout scm
script {
// build different tags
id = "${env.dockerhub_repo}"
if (env.BRANCH_NAME == 'master') {
// CPU
id_cpu = DockerBuild(
id,
tag: ['latest', 'cpu'],
build_args: [
"tf_ver=${env.tf_ver}",
"py_ver=${env.py_ver}",
"branch=master"
]
)
// Check that default CMD is correct by starting the image
sh "bash ../check_oc_artifact/check_artifact.sh ${env.dockerhub_repo}"
// GPU
id_gpu = DockerBuild(
id,
tag: ['gpu'],
build_args: [
"tf_ver=${env.tf_ver}-gpu",
"py_ver=${env.py_ver}",
"branch=master"
]
)
}
if (env.BRANCH_NAME == 'test') {
// CPU
id_cpu = DockerBuild(
id,
tag: ['test', 'cpu-test'],
build_args: [
"tf_ver=${env.tf_ver}",
"py_ver=${env.py_ver}",
"branch=test"
]
)
// Check that default CMD is correct by starting the image
sh "bash ../check_oc_artifact/check_artifact.sh ${env.dockerhub_repo}:test"
// GPU
id_gpu = DockerBuild(
id,
tag: ['gpu-test'],
build_args: [
"tf_ver=${env.tf_ver}-gpu",
"py_ver=${env.py_ver}",
"branch=test"
]
)
}
}
}
}
}
stage('Docker Hub delivery') {
when {
anyOf {
branch 'master'
branch 'test'
buildingTag()
}
}
steps {
script {
DockerPush(id_cpu)
DockerPush(id_gpu)
}
}
post {
failure {
DockerClean()
}
always {
cleanWs()
}
}
}
stage("Render metadata on the marketplace") {
when {
allOf {
branch 'master'
changeset 'metadata.json'
}
}
steps {
script {
def job_result = JenkinsBuildJob("Pipeline-as-code/deephdc.github.io/pelican")
job_result_url = job_result.absoluteUrl
}
}
}
}
}