Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
git \
pkg-config \
libasound2-dev \
libgl1-mesa-dev \
libgl1-mesa-dev \''
libx11-dev \
libxcursor-dev \
libxi-dev \
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/collect_mingw_runtime_dlls.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading