forked from deephdc/DEEP-OC-generic-container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
106 lines (96 loc) · 3.2 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
#!/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-generic-container"
base_cpu_tag = "1.12.0-py3"
base_gpu_tag = "1.12.0-py3"
}
stages {
stage('Docker image building') {
when {
anyOf {
branch 'master'
branch 'test'
buildingTag()
}
}
steps{
checkout scm
script {
// build different tags
id = "${env.dockerhub_repo}"
if (env.BRANCH_NAME == 'master') {
// CPU (aka latest, i.e. default)
id_cpu = DockerBuild(id,
tag: ['latest', 'cpu'],
build_args: ["tag=${env.base_cpu_tag}",
"branch=master"])
// GPU
id_gpu = DockerBuild(id,
tag: ['gpu'],
build_args: ["tag=${env.base_gpu_tag}",
"branch=master"])
}
if (env.BRANCH_NAME == 'test') {
// CPU
id_cpu = DockerBuild(id,
tag: ['test', 'cpu-test'],
build_args: ["tag=${env.base_cpu_tag}",
"branch=test"])
// GPU
id_gpu = DockerBuild(id,
tag: ['gpu-test'],
build_args: ["tag=${env.base_gpu_tag}",
"branch=test"])
}
}
}
post {
failure {
DockerClean()
}
}
}
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
}
}
}
}
}