-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
114 lines (111 loc) · 5.41 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
@Library("shared-library") _
pipeline {
agent {
node {
label 'windows-agent-01'
customWorkspace "D:\\jenkins-workspace\\supremacy-hangar"
}
}
environment {
deployEnv = mapBranchToDeployEnvironment()
unityPath = "C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.5f1\\Editor\\Unity.exe"
}
stages {
stage('Build') {
steps {
echo 'Sending notification to Slack.'
slackSend channel: '#ops-deployments',
color: '#4A90E2',
message: "Started *supremacy-hangar* build. Job name: *${env.JOB_NAME}*. Build no: *${env.BUILD_NUMBER}*. More info: <${env.BUILD_URL}|supremacy-hangar-build>"
script {
if (env.BRANCH_NAME == 'develop') {
echo 'Prewarm started'
bat "\"${unityPath}\" -batchmode -quit -buildTarget WebGL -projectPath ${env.WORKSPACE} -logFile prewarm_log.txt -executeMethod BuildSystem.CLI.PreWarm -addressablesLocation staging"
echo 'Prewarm completed'
echo 'Build started'
bat "\"${unityPath}\" -batchmode -quit -buildTarget WebGL -projectPath ${env.WORKSPACE} -logFile builds_log.txt -executeMethod BuildSystem.CLI.BuildWebGL -addressablesLocation staging"
echo 'Build completed'
} else {
echo 'Prewarm started'
bat "\"${unityPath}\" -batchmode -quit -buildTarget WebGL -projectPath ${env.WORKSPACE} -logFile prewarm_log.txt -executeMethod BuildSystem.CLI.PreWarm -addressablesLocation ${deployEnv}"
echo 'Prewarm completed'
echo 'Build started'
bat "\"${unityPath}\" -batchmode -quit -buildTarget WebGL -projectPath ${env.WORKSPACE} -logFile builds_log.txt -executeMethod BuildSystem.CLI.BuildWebGL -addressablesLocation ${deployEnv}"
echo 'Build completed'
}
}
}
post {
success {
echo 'Build stage successful.'
slackSend channel: '#ops-deployments',
color: 'good',
message: ":white_check_mark: *supremacy-hangar* build has *succeded*. Job name: *${env.JOB_NAME}*. Build no: *${env.BUILD_NUMBER}*. More info: <${env.BUILD_URL}|supremacy-hangar-build>"
}
failure {
echo 'Build stage unsuccessful.'
slackSend channel: '#ops-deployments',
color: 'danger',
message: ":x: *supremacy-hangar* build has *failed*. Job name: *${env.JOB_NAME}*. Build no: *${env.BUILD_NUMBER}*. More info: <${env.BUILD_URL}|supremacy-hangar-build>"
}
}
}
stage('Deploy build') {
steps {
echo 'Deploy build started'
bat """
mkdir Build-to-Deploy
xcopy /E /Y ${env.WORKSPACE}\\Builds\\WebGL\\Build ${env.WORKSPACE}\\Build-to-Deploy
xcopy /E /I /Y ${env.WORKSPACE}\\Builds\\WebGL\\StreamingAssets ${env.WORKSPACE}\\Build-to-Deploy\\StreamingAssets
"""
script {
if (env.BRANCH_NAME == 'develop') {
bat "rclone sync \"${env.WORKSPACE}/Build-to-Deploy\" \"afiles:/var/www/html/supremacy-hangar/build/staging/\" --progress --verbose --multi-thread-streams 10"
} else {
bat "rclone sync \"${env.WORKSPACE}/Build-to-Deploy\" \"afiles:/var/www/html/supremacy-hangar/build/${deployEnv}/\" --progress --verbose --multi-thread-streams 10"
}
}
}
post {
success {
echo 'Deploy build stage successful.'
slackSend channel: '#ops-deployments',
color: 'good',
message: ":white_check_mark: *supremacy-hangar* build deploy has *succeded*. Job name: *${env.JOB_NAME}*. Build no: *${env.BUILD_NUMBER}*. More info: <${env.BUILD_URL}|supremacy-hangar-deploy>"
}
failure {
echo 'Deploy build stage successful.'
slackSend channel: '#ops-deployments',
color: 'danger',
message: ":x: *supremacy-hangar* build deploy has *failed*. Job name: *${env.JOB_NAME}*. Build no: *${env.BUILD_NUMBER}*. More info: <${env.BUILD_URL}|supremacy-hangar-deploy>"
}
}
}
stage('Deploy addressables') {
steps {
echo 'Deploy addressbales started'
script {
if (env.BRANCH_NAME == 'develop') {
bat "rclone sync \"${env.WORKSPACE}/ServerData/\" \"afiles:/var/www/html/supremacy-hangar/addressables/staging/\" --progress --verbose --multi-thread-streams 10"
} else {
bat "rclone sync \"${env.WORKSPACE}/ServerData/\" \"afiles:/var/www/html/supremacy-hangar/addressables/${deployEnv}/\" --progress --verbose --multi-thread-streams 10"
}
}
}
post {
success {
echo 'Deploy addressables stage successful.'
slackSend channel: '#ops-deployments',
color: 'good',
message: ":white_check_mark: *supremacy-hangar* addressables deploy has *succeded*. Job name: *${env.JOB_NAME}*. Build no: *${env.BUILD_NUMBER}*. More info: <${env.BUILD_URL}|supremacy-hangar-deploy>"
}
failure {
echo 'Deploy addressables stage successful.'
slackSend channel: '#ops-deployments',
color: 'danger',
message: ":x: *supremacy-hangar* addressables deploy has *failed*. Job name: *${env.JOB_NAME}*. Build no: *${env.BUILD_NUMBER}*. More info: <${env.BUILD_URL}|supremacy-hangar-deploy>"
}
}
}
}
}