This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
forked from jsmok-psnc/DEEP-OC-integrated_plant_protection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
112 lines (98 loc) · 3.65 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
#!/usr/bin/groovy
@Library(['github.com/indigo-dc/[email protected]']) _
pipeline {
agent {
label 'docker-build'
}
environment {
dockerhub_repo = "deephdc/uc-ai4eosc-psnc-deep-oc-integrated_plant_protection"
base_cpu_tag = "2.1.2"
base_gpu_tag = "2.1.2-cuda12.1-cudnn8-runtime"
}
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()
}
}
}
}
}