From f246a05b4d192a3f2ba717541d182ab3bcb830de Mon Sep 17 00:00:00 2001 From: Nate Sesti Date: Wed, 23 Aug 2023 15:53:39 -0700 Subject: build: :construction_worker: update build script for m1 --- analyze_binary.py | 27 +++++++++++++++++++++++++++ buildm1.sh | 23 +++++++++++++++++------ 2 files changed, 44 insertions(+), 6 deletions(-) create mode 100644 analyze_binary.py diff --git a/analyze_binary.py b/analyze_binary.py new file mode 100644 index 00000000..4fc1c711 --- /dev/null +++ b/analyze_binary.py @@ -0,0 +1,27 @@ +from collections import defaultdict + +# Initialize a dictionary to store the sizes of the folders +folder_sizes = defaultdict(int) + +# Parse the file +with open( + "archive_contents.txt", "r" +) as f: # replace 'file.txt' with your file name + for line in f: + parts = line.split(",") + if len(parts) < 2: + continue + size = int(parts[1].strip()) # get the size + path = parts[-1].strip() # get the path + + # Split the path into its components and accumulate the sizes for each folder + path_parts = path.split("/") + top_level = path_parts[0] + folder_sizes[top_level] += size + +# Sort the folders by size in descending order +sorted_folders = sorted(folder_sizes.items(), key=lambda x: x[1], reverse=True) + +# Print the sorted folders and their sizes +for folder, size in sorted_folders: + print(f"{folder}: {size}") diff --git a/buildm1.sh b/buildm1.sh index 356026c0..fbb127c2 100644 --- a/buildm1.sh +++ b/buildm1.sh @@ -1,11 +1,22 @@ - #!/bin/sh -# 1. Remove continuedev/.venv +# 1. Remove unwanted stuff +rm -rf build +rm -rf env +rm -rf dist rm -rf continuedev/.venv -# 2. Run pyinstaller run.m1.spec -pyinstaller run.m1.spec +# 2. Create a new virtual environment and activate it +python3 -m venv env +source env/bin/activate + +# 3. Install the required packages +pip install -r continuedev/requirements.txt + +pip install pyinstaller + +# 4. Call PyInstaller from within the virtual environment +env/bin/pyinstaller run.m1.spec -# 3. Reinstall poetry deps -cd continuedev && poetry install \ No newline at end of file +# 5. Deactivate the virtual environment +deactivate \ No newline at end of file -- cgit v1.2.3-70-g09d2