From e91b6aa35d5bf76478ff96e989884c0f3e9909b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20Anderss=C3=A9n?= Date: Sat, 14 Mar 2026 01:32:53 +0200 Subject: [PATCH] fix: update Win64 release audit command to skip visualizer --- .github/workflows/release.yml | 4 ++-- tools/collect_mingw_runtime_dlls.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e665573..9754486 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: git \ pkg-config \ libasound2-dev \ - libgl1-mesa-dev \ + libgl1-mesa-dev \'' libx11-dev \ libxcursor-dev \ libxi-dev \ @@ -98,7 +98,7 @@ jobs: mkdir -p ./dist/test-win64 python3 -c 'import zipfile; zipfile.ZipFile("./dist/engine-control-test-rig-simulator-win64.zip").extractall("./dist/test-win64")' cd ./dist/test-win64/engine-control-test-rig-simulator-win64 - python3 tools/release_audit.py --bundle-dir . --command-prefix wine --visualizer-timeout 5 --skip-visualization-regeneration + python3 tools/release_audit.py --bundle-dir . --command-prefix wine --skip-visualizer --skip-visualization-regeneration - name: Upload Win64 bundle artifact uses: actions/upload-artifact@v4 diff --git a/tools/collect_mingw_runtime_dlls.py b/tools/collect_mingw_runtime_dlls.py index 908d0ee..a40fbdc 100644 --- a/tools/collect_mingw_runtime_dlls.py +++ b/tools/collect_mingw_runtime_dlls.py @@ -20,7 +20,7 @@ def parse_args() -> argparse.Namespace: help="objdump executable to use for dependency inspection.", ) return parser.parse_args() - +'' def is_windows_system_dll(dll_name: str) -> bool: upper_name = dll_name.upper()