-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathJenkinsfile
173 lines (170 loc) · 10.9 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
pipeline {
environment {
DEST = "/home/website/wallet/release"
}
agent any
stages {
stage('build'){
parallel{
stage('build on mac'){
when {
anyOf {
branch 'master'
}
}
agent {
label 'macos'
}
steps {
echo 'hello from mac'
script {
sh('git submodule init')
sh('git submodule update -f')
sh('npm install')
sh('npx grunt build-osx')
dir('./build_tools/osx') {
withCredentials([
sshUserPrivateKey(credentialsId: "jenkins", keyFileVariable: 'keyfile_jenkins'),
string(credentialsId: "jenkins_host", variable: 'jenkins_host'),
sshUserPrivateKey(credentialsId: "info", keyFileVariable: 'keyfile_info'),
string(credentialsId: "info_host_10", variable: 'info_host_10'),
string(credentialsId: "info_host_11", variable: 'info_host_11'),
string(credentialsId: "jenkins_keychain_pwd", variable: 'jenkins_keychain_pwd'),
string(credentialsId: "millix_codesign_developer_id_application", variable: 'millix_codesign_developer_id_application'),
string(credentialsId: "millix_codesign_developer_id_installer", variable: 'millix_codesign_developer_id_installer'),
string(credentialsId: "millix_developer_team_id", variable: 'millix_developer_team_id'),
string(credentialsId: "millix_developer_apple_id", variable: 'millix_developer_apple_id'),
string(credentialsId: "millix_developer_pwd", variable: 'millix_developer_pwd')
]){
sh('security -v unlock-keychain -p ${jenkins_keychain_pwd} ~/Library/Keychains/login.keychain-db')
sh('rm -rf millix.app millix-unsigned.app millix.pkg')
sh('cp -a ${WORKSPACE}/app/dist/millix/osx64/millix.app millix-unsigned.app')
sh('chmod -R a+xr millix-unsigned.app')
sh('python build_mas.py --pkg millix.pkg --config-file build.cfg --input millix-unsigned.app --output millix.app --application-identity "${millix_codesign_developer_id_application}" --installer-identity "${millix_codesign_developer_id_installer}" --team-id ${millix_developer_team_id} --verbose')
sh('xcrun notarytool submit millix.pkg --apple-id ${millix_developer_apple_id} --password ${millix_developer_pwd} --team-id ${millix_developer_team_id} --wait')
sh('xcrun stapler staple millix.pkg')
sh('mv millix.pkg ${WORKSPACE}/app/dist/installer')
sh('scp -i ${keyfile_info} -oProxyCommand="ssh -i ${keyfile_jenkins} -W %h:%p millix_jenkins_s@${jenkins_host}" ${WORKSPACE}/app/dist/installer/millix.pkg info@${info_host_10}:${DEST}')
sh('scp -i ${keyfile_info} -oProxyCommand="ssh -i ${keyfile_jenkins} -W %h:%p millix_jenkins_s@${jenkins_host}" ${WORKSPACE}/app/dist/installer/millix.pkg info@${info_host_11}:${DEST}')
}
}
deleteDir()
}
}
}
stage('build on win'){
when {
anyOf {
branch 'master'
}
}
agent {
label 'win'
}
steps {
echo 'hello from win'
script {
bat'git submodule init'
bat'git submodule update -f'
bat'npm install'
bat'npx grunt build-win'
bat'mv ./app/dist/millix/win64 ./app/dist/millix/millix-win-x64'
if(!fileExists('./app/dist/millix/millix-win-x64-unsigned'))
{
bat """
cd ./app/dist/millix/
mkdir millix-win-x64-unsigned
""".stripIndent().trim()
}
bat 'mv ./app/dist/millix/millix-win-x64/millix.exe ./app/dist/millix/millix-win-x64-unsigned/millix.exe'
echo 'sign binary'
dir('./../../../CodeSignTool-v1.2.0-windows')
{
withCredentials([
string(credentialsId: 'ssl_totp_millix', variable: 'ssl_totp'),
string(credentialsId: 'ssl_credential_id_millix', variable: 'ssl_credential_id'),
string(credentialsId: 'ssl_username_millix', variable: 'ssl_username'),
string(credentialsId: 'ssl_password_millix', variable: 'ssl_password')
]){
echo "sign the tangled binary"
bat """CodeSignTool.bat sign ^
-credential_id=${ssl_credential_id} ^
-username=${ssl_username} ^
-password=${ssl_password} ^
-totp_secret=\"${ssl_totp}\" ^
-output_dir_path=${WORKSPACE}/app/dist/millix/millix-win-x64/ ^
-input_file_path=${WORKSPACE}/app/dist/millix/millix-win-x64-unsigned/millix.exe
"""
}
}
bat'npx grunt shell:innosetup'
echo 'sign installer'
dir('./../../../CodeSignTool-v1.2.0-windows')
{
withCredentials([
string(credentialsId: 'ssl_totp_millix', variable: 'ssl_totp'),
string(credentialsId: 'ssl_credential_id_millix', variable: 'ssl_credential_id'),
string(credentialsId: 'ssl_username_millix', variable: 'ssl_username'),
string(credentialsId: 'ssl_password_millix', variable: 'ssl_password')
]){
echo "sign the tangled binary"
bat """CodeSignTool.bat sign ^
-credential_id=${ssl_credential_id} ^
-username=${ssl_username} ^
-password=${ssl_password} ^
-totp_secret=\"${ssl_totp}\" ^
-output_dir_path=${WORKSPACE}/app/dist/installer/ ^
-input_file_path=${WORKSPACE}/app/dist/installer/unsigned/Millix_Setup.exe
"""
}
}
echo 'making archive'
bat"cd ${WORKSPACE}/app/dist/installer/ && 7z a -tzip millix-win-x64.zip Millix_Setup.exe"
withCredentials([
sshUserPrivateKey(credentialsId: "info", keyFileVariable: 'keyfile_info'),
string(credentialsId: "info_10_port", variable: 'info_10_port'),
string(credentialsId: "info_11_port", variable: 'info_11_port'),
string(credentialsId: "gateway_host", variable: 'gateway_host')
]){
bat'"c:\\Program Files\\git\\usr\\bin\\scp.exe" -i %keyfile_info% -P %info_10_port% %WORKSPACE%/app/dist/installer/millix-win-x64.zip info@%gateway_host%:%DEST%/millix-win-x64.zip'
bat'"c:\\Program Files\\git\\usr\\bin\\scp.exe" -i %keyfile_info% -P %info_11_port% %WORKSPACE%/app/dist/installer/millix-win-x64.zip info@%gateway_host%:%DEST%/millix-win-x64.zip'
}
deleteDir()
}
}
}
stage('build on linux'){
when {
anyOf {
branch 'master'
}
}
agent {
label 'linux'
}
steps {
echo 'hello from linux'
script{
sh('git submodule init')
sh('git submodule update -f')
sh('npm install')
sh('npx grunt build-linux')
sh('cd ${WORKSPACE}/app/dist/millix/ && mv linux64 millix-linux-x64 && zip -r millix-linux-x64.zip millix-linux-x64/')
withCredentials([
sshUserPrivateKey(credentialsId: "jenkins", keyFileVariable: 'keyfile_jenkins'),
string(credentialsId: "jenkins_host", variable: 'jenkins_host'),
sshUserPrivateKey(credentialsId: "info", keyFileVariable: 'keyfile_info'),
string(credentialsId: "info_host_10", variable: 'info_host_10'),
string(credentialsId: "info_host_11", variable: 'info_host_11')
]){
sh('scp -i ${keyfile_info} -oProxyCommand="ssh -i ${keyfile_jenkins} -W %h:%p millix_jenkins_s@${jenkins_host}" ${WORKSPACE}/app/dist/millix/millix-linux-x64.zip info@${info_host_10}:${DEST}')
sh('scp -i ${keyfile_info} -oProxyCommand="ssh -i ${keyfile_jenkins} -W %h:%p millix_jenkins_s@${jenkins_host}" ${WORKSPACE}/app/dist/millix/millix-linux-x64.zip info@${info_host_11}:${DEST}')
}
deleteDir()
}
}
}
}
}
}
}