2024-02-29 23:00:35 +01:00
|
|
|
# SPDX-FileCopyrightText: 2024 shadPS4 Emulator Project
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
name: Linux-Qt
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
|
|
|
BUILD_TYPE: Release
|
|
|
|
CLANG_VER: 17
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Fetch submodules
|
|
|
|
run: git submodule update --init --recursive
|
|
|
|
|
|
|
|
- name: Install misc packages
|
2024-03-01 07:23:02 +01:00
|
|
|
run: >
|
|
|
|
sudo apt-get update && sudo apt install libx11-dev libgl1-mesa-glx mesa-common-dev libfuse2
|
|
|
|
libwayland-dev libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-icccm4 libxcb-image0-dev
|
|
|
|
libxcb-cursor-dev libxxhash-dev libvulkan-dev
|
2024-02-29 23:00:35 +01:00
|
|
|
|
|
|
|
- name: Install newer Clang
|
|
|
|
run: |
|
|
|
|
wget https://apt.llvm.org/llvm.sh
|
|
|
|
chmod +x ./llvm.sh
|
|
|
|
sudo ./llvm.sh ${{env.CLANG_VER}}
|
|
|
|
|
|
|
|
- name: Install Qt
|
|
|
|
uses: jurplel/install-qt-action@v3
|
|
|
|
with:
|
|
|
|
version: 6.6.1
|
|
|
|
host: linux
|
|
|
|
target: desktop
|
|
|
|
#arch: clang++-17
|
|
|
|
dir: ${{ runner.temp }}
|
|
|
|
#modules: qtcharts qt3d
|
|
|
|
setup-python: false
|
|
|
|
|
|
|
|
- name: Configure CMake
|
|
|
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=clang-${{env.CLANG_VER}} -DCMAKE_CXX_COMPILER=clang++-${{env.CLANG_VER}} -DENABLE_QT_GUI=ON
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel
|
|
|
|
|
|
|
|
- name: Run AppImage packaging script
|
|
|
|
run: ./.github/linux-appimage-qt.sh
|
|
|
|
|
|
|
|
- name: Upload executable
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: shadps4-linux-qt
|
2024-03-01 07:23:02 +01:00
|
|
|
path: Shadps4-qt.AppImage
|