forked from ruslo/hunter
-
Notifications
You must be signed in to change notification settings - Fork 181
/
jenkins.py
executable file
·262 lines (221 loc) · 6.94 KB
/
jenkins.py
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
#!/usr/bin/env python3
# Copyright (c) 2014, Ruslan Baratov
# All rights reserved.
# https://github.com/cpp-pm/polly/wiki/Jenkins
import argparse
import hashlib
import os
import shutil
import subprocess
import sys
import tarfile
import tempfile
import time
def clear_except_download(hunter_root):
base_dir = os.path.join(hunter_root, '_Base')
if os.path.exists(base_dir):
print('Clearing directory: {}'.format(base_dir))
hunter_download_dir = os.path.join(base_dir, 'Download', 'Hunter')
if os.path.exists(hunter_download_dir):
shutil.rmtree(hunter_download_dir)
for filename in os.listdir(base_dir):
if filename != 'Download':
to_remove = os.path.join(base_dir, filename)
if os.name == 'nt':
# Fix "path too long" error
subprocess.check_call(['cmd', '/c', 'rmdir', to_remove, '/S', '/Q'])
else:
shutil.rmtree(to_remove)
def run():
parser = argparse.ArgumentParser("Testing script")
parser.add_argument(
'--nocreate',
action='store_true',
help='Do not create Hunter archive (reusing old)'
)
parser.add_argument(
'--all-release',
action='store_true',
help='Release build type for all 3rd party packages'
)
parser.add_argument(
'--clear',
action='store_true',
help='Remove old testing directories'
)
parser.add_argument(
'--clear-except-download',
action='store_true',
help='Remove old testing directories except `Download` directory'
)
parser.add_argument(
'--disable-builds',
action='store_true',
help='Disable building of package (useful for checking package can be loaded from cache)'
)
parser.add_argument(
'--upload',
action='store_true',
help='Upload cache to server and run checks (clean up will be triggered, same as --clear-except-download)'
)
parsed_args = parser.parse_args()
if parsed_args.upload:
password = os.getenv('GITHUB_USER_PASSWORD')
if password is None:
sys.exit('Expected environment variable GITHUB_USER_PASSWORD on uploading')
cdir = os.getcwd()
hunter_root = cdir
toolchain = os.getenv('TOOLCHAIN')
if not toolchain:
sys.exit('Environment variable TOOLCHAIN is empty')
project_dir = os.getenv('PROJECT_DIR')
if not project_dir:
sys.exit('Expected environment variable PROJECT_DIR')
ci = os.getenv('TRAVIS') or os.getenv('APPVEYOR')
if (ci and toolchain == 'dummy'):
print('Skip build: CI dummy (workaround)')
sys.exit(0)
verbose = True
env_verbose = os.getenv('VERBOSE')
if env_verbose:
if env_verbose == '0':
verbose = False
elif env_verbose == '1':
verbose = True
else:
sys.exit(
'Environment variable VERBOSE: expected 0 or 1, got "{}"'.format(
env_verbose
)
)
project_dir = os.path.join(cdir, project_dir)
project_dir = os.path.normpath(project_dir)
testing_dir = os.path.join(os.getcwd(), '_testing')
if os.path.exists(testing_dir) and parsed_args.clear:
print('REMOVING: {}'.format(testing_dir))
shutil.rmtree(testing_dir)
os.makedirs(testing_dir, exist_ok=True)
if os.name == 'nt':
# path too long workaround
hunter_junctions = os.getenv('HUNTER_JUNCTIONS')
if hunter_junctions:
temp_dir = tempfile.mkdtemp(dir=hunter_junctions)
shutil.rmtree(temp_dir)
subprocess.check_output(
"cmd /c mklink /J {} {}".format(temp_dir, testing_dir)
)
testing_dir = temp_dir
hunter_url = os.path.join(testing_dir, 'hunter.tar.gz')
if parsed_args.nocreate:
if not os.path.exists(hunter_url):
sys.exit('Option `--nocreate` but no archive')
else:
arch = tarfile.open(hunter_url, 'w:gz')
arch.add('cmake')
arch.add('scripts')
arch.close()
hunter_sha1 = hashlib.sha1(open(hunter_url, 'rb').read()).hexdigest()
hunter_root = os.path.join(testing_dir, 'Hunter')
if parsed_args.clear_except_download:
clear_except_download(hunter_root)
if os.name == 'nt':
which = 'where'
else:
which = 'which'
polly_root = os.getenv('POLLY_ROOT')
if polly_root:
polly_root = os.path.abspath(polly_root)
print('Using POLLY_ROOT: {}'.format(polly_root))
build_script = os.path.join(polly_root, 'bin', 'build.py')
else:
build_script = subprocess.check_output(
[which, 'build.py'], universal_newlines=True
).split('\n')[0]
if not os.path.exists(build_script):
sys.exit('Script not found: {}'.format(build_script))
print('Testing in: {}'.format(testing_dir))
os.chdir(testing_dir)
args = [
sys.executable,
build_script,
'--clear',
'--config',
'Release',
'--toolchain',
toolchain,
'--home',
project_dir,
'--fwd',
'CMAKE_POLICY_DEFAULT_CMP0069=NEW',
'HUNTER_SUPPRESS_LIST_OF_FILES=ON',
'HUNTER_ROOT={}'.format(hunter_root),
'TESTING_URL={}'.format(hunter_url),
'TESTING_SHA1={}'.format(hunter_sha1)
]
if not parsed_args.nocreate:
args += ['HUNTER_RUN_INSTALL=ON']
if parsed_args.disable_builds:
args += ['HUNTER_DISABLE_BUILDS=ON']
if parsed_args.all_release:
args += ['HUNTER_CONFIGURATION_TYPES=Release']
if parsed_args.upload:
passwords = os.path.join(
cdir, 'maintenance', 'upload-password-template.cmake'
)
args += ['HUNTER_RUN_UPLOAD=ON']
args += ['HUNTER_PASSWORDS_PATH={}'.format(passwords)]
args += ['--verbose']
if not verbose:
args += ['--discard', '10']
args += ['--tail', '200']
print('Execute command: [')
for i in args:
print(' `{}`'.format(i))
print(']')
subprocess.check_call(args)
cache_retry_count = 0
max_cache_retry_count = 5
if parsed_args.upload:
seconds = 60
print(
'Wait for GitHub changes became visible ({} seconds)...'.format(seconds)
)
time.sleep(seconds)
print('Run sanity build')
clear_except_download(hunter_root)
# Sanity check - run build again with disabled building from sources
args = [
sys.executable,
build_script,
'--clear',
'--verbose',
'--config',
'Release',
'--toolchain',
toolchain,
'--home',
project_dir,
'--fwd',
'HUNTER_DISABLE_BUILDS=ON',
'HUNTER_USE_CACHE_SERVERS=ONLY',
'CMAKE_POLICY_DEFAULT_CMP0069=NEW',
'HUNTER_SUPPRESS_LIST_OF_FILES=ON',
'HUNTER_ROOT={}'.format(hunter_root),
'TESTING_URL={}'.format(hunter_url),
'TESTING_SHA1={}'.format(hunter_sha1)
]
if not verbose:
args += ['--discard', '10']
args += ['--tail', '200']
print('Execute command: [')
for i in args:
print(' `{}`'.format(i))
print(']')
while subprocess.call(args) and cache_retry_count < max_cache_retry_count:
print('Cache-only sanity check attempt {} failed...'.format(cache_retry_count))
time.sleep(seconds)
cache_retry_count += 1
if cache_retry_count >= max_cache_retry_count:
exit(1)
if __name__ == "__main__":
run()