Skip to content

Commit 214dd7c

Browse files
committed
Adding windows arm64 and ios to test script.
1 parent 3c609f2 commit 214dd7c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tools/release_scripts/test_everything.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ def get_python_exe_name():
3535
args = [python_exe, 'make.py', '-compiler', compiler, '-cpu', arch, '-config', config, '-build', '-unit_test', '-clean']
3636
cmd_args.append([x for x in args if x])
3737

38+
if platform.system() == 'Windows':
39+
for config in configs:
40+
args = [python_exe, 'make.py', '-compiler', 'vs2017', '-cpu', 'arm64', '-config', config, '-build', '-clean']
41+
cmd_args.append([x for x in args if x])
42+
elif platform.system() == 'Darwin':
43+
for config in configs:
44+
args = [python_exe, 'make.py', '-compiler', 'ios', '-config', config, '-build', '-clean']
45+
cmd_args.append([x for x in args if x])
46+
3847
root_dir = os.path.join(os.getcwd(), '../..')
3948
os.chdir(root_dir)
4049

0 commit comments

Comments
 (0)