This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
106 lines (96 loc) · 2.99 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.4.0']) _
pipeline {
agent {
label 'docker-build'
}
environment {
dockerhub_repo = "deephdc/deep-oc-federated-server"
base_cpu_tag = "3.10-bookworm"
}
stages {
stage('Validate metadata') {
steps {
checkout scm
sh 'deep-app-schema-validator metadata.json'
}
}
stage('Docker image building') {
when {
anyOf {
branch 'main'
branch 'tokens'
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 == 'main') {
// CPU (aka latest, i.e. default)
id_cpu = DockerBuild(id,
tag: ['latest'],
build_args: ["tag=${env.base_cpu_tag}",
"branch=main"])
}
if (env.BRANCH_NAME == 'tokens') {
// CPU
id_cpu = DockerBuild(id,
tag: ['tokens'],
build_args: ["tag=${env.base_cpu_tag}",
"branch=tokens"])
}
}
}
}
post {
failure {
DockerClean()
}
}
}
stage('Docker Hub delivery') {
when {
anyOf {
branch 'main'
branch 'tokens'
buildingTag()
}
}
steps{
script {
DockerPush(id_cpu)
}
}
post {
failure {
DockerClean()
}
always {
cleanWs()
}
}
}
stage("Render metadata on the marketplace") {
when {
allOf {
branch 'main'
changeset 'metadata.json'
}
}
steps {
script {
def job_result = JenkinsBuildJob("Pipeline-as-code/deephdc.github.io/pelican")
job_result_url = job_result.absoluteUrl
}
}
}
}
}