import argparse
import os
import platform
import shutil
import sys
import tarfile
THIS_DIR = os.path.dirname(__file__)
sys.path.append(
os.path.join(os.path.dirname(THIS_DIR), '..', 'clang', 'scripts'))
from build_rust import (RUST_TOOLCHAIN_OUT_DIR, THIRD_PARTY_DIR)
from update_rust import (GetLatestRevision)
from package import (MaybeUpload, TeeCmd)
from update import (CHROMIUM_DIR)
PACKAGE_VERSION = GetLatestRevision()
BUILDLOG_NAME = f'rust-buildlog-{PACKAGE_VERSION}.txt'
RUST_TOOLCHAIN_PACKAGE_NAME = f'rust-toolchain-{PACKAGE_VERSION}.tgz'
def BuildCrubit(build_mac_arm):
with open(os.path.join(THIRD_PARTY_DIR, BUILDLOG_NAME), 'w') as log:
build_cmd = [sys.executable, os.path.join(THIS_DIR, 'build_crubit.py')]
if build_mac_arm:
build_cmd.append('--build-mac-arm')
TeeCmd(build_cmd, log, fail_hard=False)
def main():
parser = argparse.ArgumentParser(description='build and package Rust')
parser.add_argument('--upload',
action='store_true',
help='upload package to GCS')
parser.add_argument('--build-mac-arm',
action='store_true',
help='Build arm binaries. Only valid on macOS.')
args = parser.parse_args()
if args.build_mac_arm and sys.platform != 'darwin':
print('--build-mac-arm only valid on macOS')
return 1
if args.build_mac_arm and platform.machine() == 'arm64':
print('--build-mac-arm only valid on intel to cross-build arm')
return 1
if sys.platform == 'darwin':
if args.build_mac_arm or platform.machine() == 'arm64':
gcs_platform = 'Mac_arm64'
else:
gcs_platform = 'Mac'
elif sys.platform == 'win32':
gcs_platform = 'Win'
else:
gcs_platform = 'Linux_x64'
if os.path.exists(RUST_TOOLCHAIN_OUT_DIR):
shutil.rmtree(RUST_TOOLCHAIN_OUT_DIR)
with open(os.path.join(THIRD_PARTY_DIR, BUILDLOG_NAME), 'w') as log:
build_cmd = [sys.executable, os.path.join(THIS_DIR, 'build_rust.py')]
if args.build_mac_arm:
build_cmd.append('--build-mac-arm')
TeeCmd(build_cmd, log)
build_cmd = [
sys.executable,
os.path.join(THIS_DIR, 'build_bindgen.py')
]
if args.build_mac_arm:
build_cmd.append('--build-mac-arm')
TeeCmd(build_cmd, log)
BuildCrubit(args.build_mac_arm)
with tarfile.open(
os.path.join(THIRD_PARTY_DIR, RUST_TOOLCHAIN_PACKAGE_NAME),
'w:gz') as tar:
tar.add(RUST_TOOLCHAIN_OUT_DIR, arcname='rust-toolchain')
os.chdir(THIRD_PARTY_DIR)
MaybeUpload(args.upload, RUST_TOOLCHAIN_PACKAGE_NAME, gcs_platform)
MaybeUpload(args.upload, BUILDLOG_NAME, gcs_platform)
return 0
if __name__ == '__main__':
sys.exit(main())