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()