-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathJenkinsfile.build
84 lines (75 loc) · 3.31 KB
/
Jenkinsfile.build
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
pipeline {
agent {
dockerfile {
filename 'Dockerfile-deploy'
reuseNode true
}
}
environment {
PROJECT_NAME = 'angular-love-client'
}
stages {
stage('Clearing caches') {
steps {
script {
// Sleeps are since we don't watch for end of the process, and jobs only start the process
build(job: 'angular.love/clear-bff-cache',
parameters: [
[$class: 'BooleanParameterValue', name: 'RUN_ON_DEV', value: true],
[$class: 'BooleanParameterValue', name: 'RUN_ON_PROD', value: true]
],
wait: true)
sleep(time:10,unit:"SECONDS")
build(job: 'angular.love/clear-site-cache', wait: true)
sleep(time:1,unit:"MINUTES")
}
}
}
stage('Trigger Builds') {
steps {
script {
build(job: 'angular.love/build-new-blog-main', wait: true)
}
}
}
stage('Wait for builds to finish') {
steps {
script {
buildStatus = 'active'
while (buildStatus == 'active') {
sleep(time:1,unit:"MINUTES")
withCredentials([
usernamePassword(credentialsId: 'cf-workers-creds', usernameVariable: 'CLOUDFLARE_ACCOUNT_ID', passwordVariable: 'CLOUDFLARE_API_TOKEN'),
]) {
buildStatus = sh(script: """
./scripts/get_last_build_status.sh -a $CLOUDFLARE_ACCOUNT_ID -p $PROJECT_NAME -t $CLOUDFLARE_API_TOKEN
""", returnStdout: true).trim()
}
echo "Build status: ${buildStatus}"
}
if (buildStatus != 'success') {
error("Build failed")
}
// Clear caches again to make sure they are cleared
build(job: 'angular.love/clear-site-cache', wait: true)
build(job: 'angular.love/clear-bff-cache',
parameters: [
[$class: 'BooleanParameterValue', name: 'RUN_ON_DEV', value: true],
[$class: 'BooleanParameterValue', name: 'RUN_ON_PROD', value: true]
],
wait: true)
withCredentials([
usernamePassword(credentialsId: 'cf-workers-creds', usernameVariable: 'CLOUDFLARE_ACCOUNT_ID', passwordVariable: 'CLOUDFLARE_API_TOKEN'),
]) {
buildUrl = sh(script: """
./scripts/get_last_builds_url.sh -a $CLOUDFLARE_ACCOUNT_ID -p $PROJECT_NAME -t $CLOUDFLARE_API_TOKEN
""", returnStdout: true).trim()
}
echo "Build URL: ${buildUrl}"
currentBuild.description = "Build URL: ${buildUrl}"
currentBuild.displayName = "${buildUrl}"
}
}
}
}
}