Skip to content

Commit

Permalink
use extra plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Odizinne committed Jan 3, 2025
1 parent dc60f98 commit dbd3507
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential libgl1-mesa-dev fuse libfuse2
sudo apt-get install -y build-essential libgl1-mesa-dev fuse libfuse2 libwayland-dev qt6-wayland
# Configure FUSE for the current user
sudo modprobe fuse
sudo groupadd fuse || true
Expand Down Expand Up @@ -190,11 +190,23 @@ jobs:
which qmake
which qmake6
echo "Current PATH: $PATH"
# Debug Qt installation and plugin paths
echo "Checking Qt installation paths..."
echo "QT_INSTALL_PREFIX: $(qmake6 -query QT_INSTALL_PREFIX)"
echo "QT_INSTALL_PLUGINS: $(qmake6 -query QT_INSTALL_PLUGINS)"
# List available platform plugins
echo "Available platform plugins:"
find $(qmake6 -query QT_INSTALL_PLUGINS) -name "libq*.so" -type f
# Set environment variables
export QMAKE=$(which qmake6)
export QML_SOURCES_PATHS=${{ github.workspace }}/Resources/qml
export OUTPUT="Retr0Mine-x86_64.AppImage"
export EXTRA_PLATFORM_PLUGINS="wayland-egl;wayland-generic"
echo "Using QMAKE: $QMAKE"
Expand Down

0 comments on commit dbd3507

Please sign in to comment.