Skip to content

Commit

Permalink
Will remove win32 dlls (#867)
Browse files Browse the repository at this point in the history
  • Loading branch information
raivisdejus authored Aug 2, 2024
1 parent ebb7cde commit 76c5a0b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/snapcraft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ jobs:
outputs:
snap: ${{ steps.snapcraft.outputs.snap }}
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 20000
swap-size-mb: 1024
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
- uses: actions/checkout@v4
with:
submodules: recursive
Expand Down
1 change: 0 additions & 1 deletion Buzz.spec
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ if platform.system() == "Windows":

binaries.append(("dll_backup/SDL2.dll", "dll_backup"))
binaries.append(("dll_backup/whisper.dll", "dll_backup"))
binaries.append(("dll_backup/win32/whisper.dll", "dll_backup/win32"))

a = Analysis(
["main.py"],
Expand Down
1 change: 0 additions & 1 deletion buzz/buzz.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
if platform.system() == "Windows":
os.add_dll_directory(APP_BASE_DIR)
os.add_dll_directory(os.path.join(APP_BASE_DIR, "dll_backup"))
os.add_dll_directory(os.path.join(APP_BASE_DIR, "dll_backup", "win32"))


def main():
Expand Down

0 comments on commit 76c5a0b

Please sign in to comment.