And we have frozen builds working with kitty-tool

This commit is contained in:
Kovid Goyal
2022-08-16 23:39:36 +05:30
parent 1c7d6f8bc6
commit e9e7b97c48
4 changed files with 20 additions and 3 deletions

View File

@@ -238,10 +238,12 @@ def main():
files = find_binaries(env)
fix_permissions(files)
add_ca_certs(env)
kitty_exe = os.path.join(env.base, 'bin', 'kitty')
iv['build_frozen_tools'](kitty_exe)
if not args.dont_strip:
strip_binaries(files)
if not args.skip_tests:
iv['run_tests'](os.path.join(env.base, 'bin', 'kitty'))
iv['run_tests'](kitty_exe)
create_tarfile(env, args.compression_level)