mirror of
https://github.com/PrismLauncher/PrismLauncher
synced 2026-04-23 09:05:03 +00:00
fix: remove unused qt plugins on linux appimage and portable (#5026)
This commit is contained in:
commit
e334a8c0f4
12
.github/actions/package/linux/action.yml
vendored
12
.github/actions/package/linux/action.yml
vendored
|
|
@ -27,6 +27,18 @@ runs:
|
|||
using: composite
|
||||
|
||||
steps:
|
||||
- name: Cleanup Qt installation on Linux
|
||||
shell: bash
|
||||
run: |
|
||||
rm -rf "$QT_PLUGIN_PATH"/printsupport
|
||||
rm -rf "$QT_PLUGIN_PATH"/sqldrivers
|
||||
rm -rf "$QT_PLUGIN_PATH"/help
|
||||
rm -rf "$QT_PLUGIN_PATH"/designer
|
||||
rm -rf "$QT_PLUGIN_PATH"/qmltooling
|
||||
rm -rf "$QT_PLUGIN_PATH"/qmlls
|
||||
rm -rf "$QT_PLUGIN_PATH"/qmllint
|
||||
rm -rf "$QT_PLUGIN_PATH"/platformthemes/libqgtk3.so
|
||||
|
||||
- name: Setup build variables
|
||||
shell: bash
|
||||
run: |
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
name: Setup Linux dependencies
|
||||
description: Install and setup dependencies for building Prism Launcher
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
name: Setup Windows Dependencies
|
||||
description: Install and setup dependencies for building Prism Launcher
|
||||
|
||||
inputs:
|
||||
build-type:
|
||||
|
|
|
|||
Loading…
Reference in a new issue