This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
forked from jmbIFR/DEEP-OC-marine_species_seg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
126 lines (112 loc) · 4.06 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
#!/usr/bin/groovy
@Library(['github.com/indigo-dc/[email protected]']) _
pipeline {
agent {
label 'docker-build'
}
environment {
dockerhub_repo = "deephdc/uc-jmbifr-deep-oc-marine_species_seg"
base_cpu_tag = "2.3.3"
base_gpu_tag = "2.3.3-gpu"
}
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'){
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"])
// Check that the image starts and get_metadata responses correctly
sh "bash ../check_oc_artifact/check_artifact.sh ${env.dockerhub_repo}"
// 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"])
// Check that the image starts and get_metadata responses correctly
sh "bash ../check_oc_artifact/check_artifact.sh ${env.dockerhub_repo}: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
}
}
}
}
}