forked from awslabs/aws-c-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuilder.py
1008 lines (809 loc) · 33.5 KB
/
builder.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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License is located at
#
# http://aws.amazon.com/apache2.0
#
# or in the "license" file accompanying this file. This file is distributed
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.
from __future__ import print_function
import os, sys, glob, subprocess
# Class to refer to a specific build permutation
class BuildSpec(object):
def __init__(self, **kwargs):
if 'spec' in kwargs:
# Parse the spec from a single string
self.host, self.compiler, self.compiler_version, self.target, self.arch, *rest = kwargs['spec'].split('-')
for variant in ('downstream',):
if variant in rest:
setattr(self, variant, True)
else:
setattr(self, variant, False)
# Pull out individual fields. Note this is not in an else to support overriding at construction time
for slot in ('host', 'target', 'arch', 'compiler', 'compiler_version'):
if slot in kwargs:
setattr(self, slot, kwargs[slot])
self.name = '-'.join([self.host, self.compiler, self.compiler_version, self.target, self.arch])
if self.downstream:
self.name += "-downstream"
def __str__(self):
return self.name
def __repr__(self):
return self.name
########################################################################################################################
# DATA DEFINITIONS
########################################################################################################################
KEYS = {
# Build
'python': "",
'c': None,
'cxx': None,
'pre_build_steps': [],
'post_build_steps': [],
'build_env': {},
'cmake_args': [],
'run_tests': True,
# Linux
'use_apt': False,
'apt_keys': [],
'apt_repos': [],
'apt_packages': [],
# macOS
'use_brew': False,
'brew_packages': [],
# CodeBuild
'enabled': True,
'image': "",
'image_type': "",
'compute_type': "",
'requires_privilege': False,
}
HOSTS = {
'linux': {
'architectures': {
'x86': {
'image': "123124136734.dkr.ecr.us-east-1.amazonaws.com/aws-common-runtime/ubuntu-16.04:x86",
},
'x64': {
'image': "123124136734.dkr.ecr.us-east-1.amazonaws.com/aws-common-runtime/ubuntu-16.04:x64",
},
},
'python': "python3",
'cmake_args': [
"-DPERFORM_HEADER_CHECK=ON",
],
'use_apt': True,
'apt_repos': [
"ppa:ubuntu-toolchain-r/test",
],
'image_type': "LINUX_CONTAINER",
'compute_type': "BUILD_GENERAL1_SMALL",
},
'al2012': {
'cmake_args': [
"-DENABLE_SANITIZERS=OFF",
"-DPERFORM_HEADER_CHECK=OFF",
],
'python': "python3",
'image': "123124136734.dkr.ecr.us-east-1.amazonaws.com/aws-common-runtime/al2012:x64",
'image_type': "LINUX_CONTAINER",
'compute_type': "BUILD_GENERAL1_SMALL",
},
'manylinux': {
'architectures': {
'x86': {
'image': "123124136734.dkr.ecr.us-east-1.amazonaws.com/aws-common-runtime/manylinux1:x86",
},
'x64': {
'image': "123124136734.dkr.ecr.us-east-1.amazonaws.com/aws-common-runtime/manylinux1:x64",
},
},
'python': "/opt/python/cp37-cp37m/bin/python",
'image_type': "LINUX_CONTAINER",
'compute_type': "BUILD_GENERAL1_SMALL",
},
'windows': {
'python': "python.exe",
'cmake_args': [
"-DPERFORM_HEADER_CHECK=ON",
],
'image_type': "WINDOWS_CONTAINER",
'compute_type': "BUILD_GENERAL1_MEDIUM",
},
'macos': {
'python': "python3",
'use_brew': True,
}
}
TARGETS = {
'linux': {
'architectures': {
'x86': {
'cmake_args': [
'-DCMAKE_C_FLAGS=-m32',
'-DCMAKE_CXX_FLAGS=-m32',
],
},
},
'cmake_args': [
"-DENABLE_SANITIZERS=ON",
],
},
'macos': {
'architectures': {
'x86': {
'cmake_args': [
'-DCMAKE_C_FLAGS=-m32',
'-DCMAKE_CXX_FLAGS=-m32',
],
},
},
},
'android': {
'cmake_args': [
"-DTARGET_ARCH=ANDROID",
"-DCMAKE_TOOLCHAIN_FILE=/opt/android-ndk/build/cmake/android.toolchain.cmake",
"-DANDROID_NDK=/opt/android-ndk",
],
'run_tests': False,
'architectures': {
'arm64v8a': {
'cmake_args': [
"-DANDROID_ABI=arm64-v8a",
],
},
},
'image_type': "LINUX_CONTAINER",
'compute_type': "BUILD_GENERAL1_SMALL",
},
'windows': {
},
}
COMPILERS = {
'default': {
'hosts': ['macos', 'al2012', 'manylinux'],
'targets': ['macos', 'linux'],
'versions': {
'default': { }
}
},
'clang': {
'hosts': ['linux', 'macos'],
'targets': ['linux', 'macos'],
'post_build_steps': [
["{clang_tidy}", "-p", "{build_dir}", "{sources}"],
],
'cmake_args': ['-DCMAKE_EXPORT_COMPILE_COMMANDS=ON', '-DENABLE_FUZZ_TESTS=ON'],
'apt_keys': ["http://apt.llvm.org/llvm-snapshot.gpg.key"],
'versions': {
'3': {
'!post_build_steps': [],
'!apt_repos': [],
'!cmake_args': [],
'apt_packages': ["clang-3.9"],
'c': "clang-3.9",
'cxx': "clang-3.9",
},
'6': {
'apt_repos': [
"deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-6.0 main",
],
'apt_packages': ["clang-6.0", "clang-format-6.0", "clang-tidy-6.0"],
'c': "clang-6.0",
'cxx': "clang-6.0",
'build_env': {
'CLANG_FORMAT': 'clang-format-6.0',
},
'post_build_steps': [
["./format-check.sh"],
],
'variables': {
'clang_tidy': 'clang-tidy-6.0',
},
'requires_privilege': True,
},
'8': {
'apt_repos': [
"deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-8 main",
],
'apt_packages': ["clang-8", "clang-format-8", "clang-tidy-8"],
'c': "clang-8",
'cxx': "clang-8",
'variables': {
'clang_tidy': 'clang-tidy-8',
},
'requires_privilege': True,
},
},
},
'gcc': {
'hosts': ['linux'],
'targets': ['linux'],
'c': "gcc-{version}",
'cxx': "g++-{version}",
'apt_packages': ["gcc-{version}", "g++-{version}"],
'versions': {
'4.8': {},
'5': {},
'6': {},
'7': {},
'8': {},
},
'architectures': {
'x86': {
'apt_packages': ["gcc-{version}-multilib", "g++-{version}-multilib"],
},
},
},
'msvc': {
'hosts': ['windows'],
'targets': ['windows'],
'cmake_args': ["-G", "Visual Studio {generator_version}{generator_postfix}"],
'versions': {
'2015': {
'variables': {
'generator_version': "14 2015",
},
'image': "123124136734.dkr.ecr.us-east-1.amazonaws.com/aws-common-runtime/win-vs2015:x64",
},
'2017': {
'variables': {
'generator_version': "15 2017",
},
'image': "123124136734.dkr.ecr.us-east-1.amazonaws.com/aws-common-runtime/win-vs2017:x64",
},
},
'architectures': {
'x64': {
'variables': {
'generator_postfix': " Win64",
},
},
},
},
'ndk': {
'hosts': ['linux'],
'targets': ['android'],
'versions': {
'19': {
'cmake_args': [
"-DANDROID_NATIVE_API_LEVEL=19",
],
'image': "123124136734.dkr.ecr.us-east-1.amazonaws.com/android/ndk-r19c:latest",
}
}
}
}
########################################################################################################################
# PRODUCE CONFIG
########################################################################################################################
# Ensure the combination of options specified are valid together
def validate_build(build_spec):
assert build_spec.host in HOSTS, "Host name {} is invalid".format(build_spec.host)
assert build_spec.target in TARGETS, "Target {} is invalid".format(build_spec.target)
assert build_spec.compiler in COMPILERS, "Compiler {} is invalid".format(build_spec.compiler)
compiler = COMPILERS[build_spec.compiler]
assert build_spec.compiler_version in compiler['versions'], "Compiler version {} is invalid for compiler {}".format(build_spec.compiler_version, build_spec.compiler)
supported_hosts = compiler['hosts']
assert build_spec.host in supported_hosts, "Compiler {} does not support host {}".format(build_spec.compiler, build_spec.host)
supported_targets = compiler['targets']
assert build_spec.target in supported_targets, "Compiler {} does not support target {}".format(build_spec.compiler, build_spec.target)
# Moved outside merge_dicts to avoid variable shadowing
def _apply_value(obj, key, new_value):
key_type = type(new_value)
if key_type == list:
# Apply the config's value before the existing list
obj[key] = new_value + obj[key]
elif key_type == dict:
# Iterate each element and recursively apply the values
for k, v in new_value.items():
_apply_value(obj[key], k, v)
else:
# Unsupported type, just use it
obj[key] = new_value
# Replace all variable strings with their values
def _replace_variables(value, variables):
key_type = type(value)
if key_type == str:
# If the whole string is a variable, just replace it
if value and value.rfind('{') == 0 and value.find('}') == len(value) - 1:
return variables.get(value[1:-1], '')
# Custom formatter for optional variables
from string import Formatter
class VariableFormatter(Formatter):
def get_value(self, key, args, kwds):
if isinstance(key, str):
return kwds.get(key, '')
else:
return super().get_value(key, args, kwds)
formatter = VariableFormatter()
# Strings just do a format
return formatter.format(value, **variables)
elif key_type == list:
# Update each element
return [_replace_variables(e, variables) for e in value]
elif key_type == dict:
# Iterate each element and recursively apply the variables
return dict([(key, _replace_variables(value, variables)) for (key, value) in value.items()])
else:
# Unsupported, just return it
return value
# Traverse the configurations to produce one for the specified
def produce_config(build_spec, config_file, **additional_variables):
validate_build(build_spec)
# Build the list of config options to poll
configs = []
# Processes a config object (could come from a file), searching for keys hosts, targets, and compilers
def process_config(config):
def process_element(map, element_name, instance):
if not map:
return
element = map.get(element_name)
if not element:
return
new_config = element.get(instance)
if not new_config:
return
configs.append(new_config)
config_archs = new_config.get('architectures')
if config_archs:
config_arch = config_archs.get(build_spec.arch)
if config_arch:
configs.append(config_arch)
return new_config
process_element(config, 'hosts', build_spec.host)
process_element(config, 'targets', build_spec.target)
compiler = process_element(config, 'compilers', build_spec.compiler)
process_element(compiler, 'versions', build_spec.compiler_version)
process_config({
'hosts': HOSTS,
'targets': TARGETS,
'compilers': COMPILERS,
})
if config_file:
if not os.path.exists(config_file):
raise Exception("Config file {} specified, but could not be found".format(config_file))
import json
with open(config_file, 'r') as config_fp:
try:
project_config = json.load(config_fp)
process_config(project_config)
except Exception as e:
print("Failed to parse config file", config_file, e)
sys.exit(1)
new_version = {
'spec': build_spec,
}
# Iterate all keys and apply them
for key, default in KEYS.items():
new_version[key] = default
for config in configs:
override_key = '!' + key
if override_key in config:
# Handle overrides
new_version[key] = config[override_key]
elif key in config:
# By default, merge all values (except strings)
_apply_value(new_version, key, config[key])
# Default variables
replacements = {
'host': build_spec.host,
'compiler': build_spec.compiler,
'version': build_spec.compiler_version,
'target': build_spec.target,
'arch': build_spec.arch,
**additional_variables,
}
# Pull variables from the configs
for config in configs:
if 'variables' in config:
variables = config['variables']
assert type(variables) == dict
# Copy into the variables list
for k, v in variables.items():
replacements[k] = v
# Post process
new_version = _replace_variables(new_version, replacements)
new_version['variables'] = replacements
return new_version
########################################################################################################################
# RUN BUILD
########################################################################################################################
# Used in dry-run builds to track simulated working directory
cwd = os.getcwd()
def _get_git_branch():
branches = subprocess.check_output(["git", "branch", "-a", "--contains", "HEAD"]).decode("utf-8")
branches = [branch.strip('*').strip() for branch in branches.split('\n') if branch]
print("Found branches:", branches)
for branch in branches:
if branch == "(no branch)":
continue
origin_str = "remotes/origin/"
if branch.startswith(origin_str):
branch = branch[len(origin_str):]
return branch
return None
def run_build(build_spec, build_config, is_dryrun):
if not is_dryrun:
import tempfile, shutil
#TODO These platforms don't succeed when doing a RelWithDebInfo build
if build_spec.host in ("al2012", "manylinux"):
build_config = "Debug"
source_dir = os.environ.get("CODEBUILD_SRC_DIR", os.getcwd())
sources = [os.path.join(source_dir, file) for file in glob.glob('**/*.c')]
built_projects = []
git_branch = _get_git_branch()
if git_branch:
print("On git branch {}".format(git_branch))
def _flatten_command(*command):
# Process out lists
new_command = []
def _proc_segment(command_segment):
e_type = type(command_segment)
if e_type == str:
new_command.append(command_segment)
elif e_type == list or e_type == tuple:
for segment in command_segment:
_proc_segment(segment)
_proc_segment(command)
return new_command
def _log_command(*command):
print('>', subprocess.list2cmdline(_flatten_command(*command)), flush=True)
def _run_command(*command):
_log_command(*command)
if not is_dryrun:
subprocess.check_call(_flatten_command(*command), stdout=sys.stdout, stderr=sys.stderr)
# Helper to run makedirs regardless of dry run status
def _mkdir(directory):
_log_command("mkdir", "-p", directory)
if not is_dryrun:
os.makedirs(directory, exist_ok=True)
def _cwd():
if is_dryrun:
global cwd
return cwd
else:
return os.getcwd()
# Helper to run chdir regardless of dry run status
def _cd(directory):
_log_command("cd", directory)
if is_dryrun:
global cwd
if os.path.isabs(directory) or directory.startswith('$'):
cwd = directory
else:
cwd = os.path.join(cwd, directory)
else:
os.chdir(directory)
# Build a list of projects from a config file
def _build_dependencies(project_list, build_tests, run_tests):
pwd_1 = _cwd()
_cd(build_dir)
for project in project_list:
name = project.get("name", None)
if not name:
raise Exception("Project definition missing name: " + project)
# Skip project if already built
if name in built_projects:
continue
hosts = project.get("hosts", None)
if hosts and build_spec.host not in hosts:
print("Skipping dependency {} as it is not enabled for this host".format(name))
continue
targets = project.get("targets", None)
if targets and build_spec.target not in targets:
print("Skipping dependency {} as it is not enabled for this target".format(name))
continue
account = project.get("account", "awslabs")
pin = project.get("revision", None)
git = "https://github.com/{}/{}".format(account, name)
_run_command("git", "clone", git)
pwd_2 = _cwd()
_cd(name)
# Attempt to checkout a branch with the same name as the current branch
try:
_run_command("git", "checkout", git_branch)
except:
print("Project {} does not have a branch {}".format(name, git_branch))
# Attempt to checkout the pinned revision
if pin:
_run_command("git", "checkout", pin)
# Build/install
_build_project(name, build_tests=build_tests, run_tests=run_tests)
_cd(pwd_2)
_cd(pwd_1)
# Helper to build
def _build_project(project=None, build_tests=False, run_tests=False, build_downstream=False):
if not project:
project_source_dir = source_dir
project_build_dir = build_dir
else:
project_source_dir = os.path.join(build_dir, project)
project_build_dir = os.path.join(project_source_dir, 'build')
def _build_project_cmake():
# If the build directory doesn't already exist, make it
_mkdir(project_build_dir)
# CD to the build directory
_cd(project_build_dir)
# Set compiler flags
compiler_flags = []
for opt in ['c', 'cxx']:
if opt in config and config[opt]:
compiler_flags.append('-DCMAKE_{}_COMPILER={}'.format(opt.upper(), config[opt]))
# Run CMake
cmake_args = [
"-Werror=dev",
"-Werror=deprecated",
"-DCMAKE_INSTALL_PREFIX=" + install_dir,
"-DCMAKE_PREFIX_PATH=" + install_dir,
# Each image has a custom installed openssl build, make sure CMake knows where to find it
"-DLibCrypto_INCLUDE_DIR=/opt/openssl/include",
"-DLibCrypto_SHARED_LIBRARY=/opt/openssl/lib/libcrypto.so",
"-DLibCrypto_STATIC_LIBRARY=/opt/openssl/lib/libcrypto.a",
"-DCMAKE_BUILD_TYPE=" + build_config,
"-DBUILD_TESTING=" + ("ON" if build_tests else "OFF"),
]
_run_command("cmake", config['cmake_args'], compiler_flags, cmake_args, project_source_dir)
# Run the build
_run_command("cmake", "--build", ".", "--config", build_config)
# Do install
_run_command("cmake", "--build", ".", "--config", build_config, "--target", "install")
def _test_project_ctest():
_run_command("ctest", ".", "--output-on-failure")
upstream = []
downstream = []
build_fn = _build_project_cmake
test_fn = _test_project_ctest
project_config_file = os.path.join(project_source_dir, "builder.json")
if os.path.exists(project_config_file):
import json
with open(project_config_file, 'r') as config_fp:
try:
project_config = json.load(config_fp)
except Exception as e:
print("Failed to parse config file", project_config_file, e)
sys.exit(1)
project = project_config.get("name", project)
upstream = project_config.get("upstream", [])
downstream = project_config.get("downstream", [])
command_variables = {
'source_dir': project_source_dir,
'build_dir': project_build_dir,
**config,
**config['variables'],
}
config_build = project_config.get("build", None)
if config_build:
assert isinstance(config_build, list)
def _build_project_config():
for opt, variable in {'c': 'CC', 'cxx': 'CXX'}.items():
if opt in config and config[opt]:
os.environ[variable] = config[opt]
for command in config_build:
final_command = _replace_variables(command, command_variables)
_run_command(final_command)
build_fn = _build_project_config
config_test = project_config.get("test", None)
if config_test:
assert isinstance(config_test, list)
def _test_project_config():
for command in config_test:
final_command = _replace_variables(command, command_variables)
_run_command(final_command)
test_fn = _test_project_config
pwd = _cwd()
# If project not specified, and not pulled from the config file, default to file path
if not project:
project = os.path.basename(source_dir)
# Build upstream dependencies (don't build or run their tests)
_build_dependencies(upstream, build_tests=False, run_tests=False)
build_fn()
# Run the tests
if run_tests:
test_fn()
# Mark project as built
if project:
built_projects.append(project)
# Build downstream dependencies (build and run their tests if this build is setup for that)
if build_downstream:
_build_dependencies(downstream, build_tests=build_tests, run_tests=run_tests)
# CD back to the beginning directory
_cd(pwd)
# Make the build directory
if is_dryrun:
build_dir = "$TEMP/build"
else:
build_dir = tempfile.mkdtemp()
_log_command(['mkdir', build_dir])
# Make the install directory
install_dir = os.path.join(build_dir, 'install')
_mkdir(install_dir)
# Build the config object
config = produce_config(build_spec, os.path.join(_cwd(), "builder.json"), sources=sources, source_dir=source_dir, build_dir=build_dir)
if not config['enabled']:
raise Exception("The project is disabled in this configuration")
# INSTALL
if config['use_apt']:
# Install keys
for key in config['apt_keys']:
_run_command("sudo", "apt-key", "adv", "--fetch-keys", key)
# Add APT repositories
for repo in config['apt_repos']:
_run_command("sudo", "apt-add-repository", repo)
# Install packages
if config['apt_packages']:
_run_command("sudo", "apt-get", "-qq", "update", "-y")
_run_command("sudo", "apt-get", "-qq", "install", "-y", "-f", config['apt_packages'])
if config['use_brew']:
for package in config['brew_packages']:
_run_command("brew", "install", package)
# PRE BUILD
# Set build environment
for var, value in config['build_env'].items():
_log_command(["export", "{}={}".format(var, value)])
if not is_dryrun:
os.environ[var] = value
# Run configured pre-build steps
for step in config['pre_build_steps']:
_run_command(step)
# BUILD
# Actually run the build (always build tests, even if we won't run them)
_build_project(project=None, build_tests=True, run_tests=config['run_tests'], build_downstream=build_spec.downstream)
# POST BUILD
# Run configured post-build steps
for step in config['post_build_steps']:
_run_command(step)
# Delete temp dir
_log_command(["rm", "-rf", build_dir])
if not is_dryrun:
try:
shutil.rmtree(build_dir)
except Exception as e:
print("Failed to delete temp dir {}: {}".format(build_dir, e))
return commands
########################################################################################################################
# CODEBUILD
########################################################################################################################
CODEBUILD_OVERRIDES = {
'linux-clang-3-linux-x64': ['linux-clang3-x64'],
'linux-clang-6-linux-x64': ['linux-clang6-x64'],
'linux-clang-8-linux-x64': ['linux-clang8-x64'],
'linux-clang-6-linux-x64-downstream': ['downstream'],
'linux-gcc-4.8-linux-x86': ['linux-gcc-4x-x86', 'linux-gcc-4-linux-x86'],
'linux-gcc-4.8-linux-x64': ['linux-gcc-4x-x64', 'linux-gcc-4-linux-x64'],
'linux-gcc-5-linux-x64': ['linux-gcc-5x-x64'],
'linux-gcc-6-linux-x64': ['linux-gcc-6x-x64'],
'linux-gcc-7-linux-x64': ['linux-gcc-7x-x64'],
'linux-gcc-8-linux-x64': [],
'linux-ndk-19-android-arm64v8a': ['android-arm64-v8a'],
'al2012-default-default-linux-x64': ["AL2012-gcc44"],
'manylinux-default-default-linux-x86': ["ancient-linux-x86"],
'manylinux-default-default-linux-x64': ["ancient-linux-x64"],
'windows-msvc-2015-windows-x86': ['windows-msvc-2015-x86'],
'windows-msvc-2015-windows-x64': ['windows-msvc-2015'],
'windows-msvc-2017-windows-x64': ['windows-msvc-2017'],
}
def create_codebuild_project(config, project, github_account, inplace_script):
variables = {
'project': project,
'account': github_account,
'spec': config['spec'].name,
'python': config['python'],
}
if inplace_script:
run_commands = ["{python} ./codebuild/builder.py build {spec}"]
else:
run_commands = [
"{python} -c \\\"from urllib.request import urlretrieve; urlretrieve('https://raw.githubusercontent.com/awslabs/aws-c-common/master/codebuild/builder.py', 'builder.py')\\\"",
"{python} builder.py build {spec}"
]
# This matches the CodeBuild API for expected format
CREATE_PARAM_TEMPLATE = {
'name': '{project}-{spec}',
'source': {
'type': 'GITHUB',
'location': 'https://github.com/{account}/{project}.git',
'gitCloneDepth': 1,
'buildspec':
'version: 0.2\n' +
'phases:\n' +
' build:\n' +
' commands:\n' +
' - "{python} --version"\n' +
'\n'.join([' - "{}"'.format(command) for command in run_commands]),
'auth': {
'type': 'OAUTH',
},
'reportBuildStatus': True,
},
'artifacts': {
'type': 'NO_ARTIFACTS',
},
'environment': {
'type': config['image_type'],
'image': config['image'],
'computeType': config['compute_type'],
'privilegedMode': config['requires_privilege'],
},
'serviceRole': 'arn:aws:iam::123124136734:role/CodeBuildServiceRole',
'badgeEnabled': False,
}
return _replace_variables(CREATE_PARAM_TEMPLATE, variables)
########################################################################################################################
# MAIN
########################################################################################################################
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('-d', '--dry-run', action='store_true', help="Don't run the build, just print the commands that would run")
commands = parser.add_subparsers(dest='command')
build = commands.add_parser('build', help="Run target build, formatted 'host-compiler-compilerversion-target-arch'. Ex: linux-ndk-19-android-arm64v8a")
build.add_argument('build', type=str)
build.add_argument('--config', type=str, default='RelWithDebInfo', help='The CMake configuration to build with')
codebuild = commands.add_parser('codebuild', help="Create codebuild jobs")
codebuild.add_argument('project', type=str, help='The name of the repo to create the projects for')
codebuild.add_argument('--github-account', type=str, dest='github_account', default='awslabs', help='The GitHub account that owns the repo')
codebuild.add_argument('--profile', type=str, default='default', help='The profile in ~/.aws/credentials to use when creating the jobs')
codebuild.add_argument('--inplace-script', action='store_true', help='Use the python script in codebuild/builder.py instead of downloading it')
codebuild.add_argument('--config', type=str, help='The config file to use when generating the projects')
args = parser.parse_args()
if args.command == 'build':
# If build name not passed
build_name = args.build
build_spec = BuildSpec(spec=build_name)
print("Running build", build_spec.name, flush=True)
run_build(build_spec, args.config, args.dry_run)
if args.command == 'codebuild':
# Setup AWS connection
import boto3
session = boto3.Session(profile_name=args.profile, region_name='us-east-1')
codebuild = session.client('codebuild')
# Get project status
existing_projects = []
new_projects = []
project_prefix_len = len(args.project) + 1
# Map of canonical builds to their existing codebuild projects (None if creation required)
canonical_list = {key: None for key in CODEBUILD_OVERRIDES.keys()}
# List of all potential names to search for
all_potential_builds = list(CODEBUILD_OVERRIDES.keys())
# Reverse mapping of codebuild name to canonical name
full_codebuild_to_canonical = {key.replace('.', ''): key for key in CODEBUILD_OVERRIDES.keys()}
for canonical, cb_list in CODEBUILD_OVERRIDES.items():
all_potential_builds += cb_list
for cb in cb_list:
full_codebuild_to_canonical[cb] = canonical
# Search for the projects
full_project_names = ['{}-{}'.format(args.project, build.replace('.', '')) for build in all_potential_builds]
old_projects_response = codebuild.batch_get_projects(names=full_project_names)
existing_projects += [project['name'][project_prefix_len:] for project in old_projects_response['projects']]
# Mark the found projects with their found names
for project in existing_projects:
canonical = full_codebuild_to_canonical[project]
canonical_list[canonical] = project
# Update all existing projects
for canonical, cb_name in canonical_list.items():
if cb_name:
create = False
else:
cb_name = canonical
create = True
build_name = '{}-{}'.format(args.project, cb_name)
build_spec = BuildSpec(spec=canonical)
config = produce_config(build_spec, args.config)
if not config['enabled']:
print("Skipping spec {}, as it's disabled".format(build_spec.name))
continue
cb_project = create_codebuild_project(config, args.project, args.github_account, args.inplace_script)
cb_project['name'] = build_name.replace('.', '')