2024-02-29 23:00:35 +01:00
|
|
|
# SPDX-FileCopyrightText: 2024 shadPS4 Emulator Project
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
name: Windows-Qt
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
|
|
|
BUILD_TYPE: Release
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
2024-05-08 13:17:41 +02:00
|
|
|
- uses: actions/checkout@v4
|
2024-02-29 23:00:35 +01:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: Setup Qt
|
2024-06-01 08:18:33 +02:00
|
|
|
uses: jurplel/install-qt-action@v4
|
2024-02-29 23:00:35 +01:00
|
|
|
with:
|
2024-06-23 08:57:32 +02:00
|
|
|
version: 6.7.2
|
2024-08-04 15:07:10 +02:00
|
|
|
host: windows
|
|
|
|
target: desktop
|
2024-07-30 21:41:31 +02:00
|
|
|
arch: win64_msvc2019_64
|
2024-08-04 15:07:10 +02:00
|
|
|
archives: qtbase
|
2024-05-18 19:05:18 +02:00
|
|
|
|
2024-02-29 23:00:35 +01:00
|
|
|
- name: Configure CMake
|
|
|
|
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
|
|
|
|
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
|
|
|
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -T ClangCL -DENABLE_QT_GUI=ON
|
2024-06-23 08:57:32 +02:00
|
|
|
|
2024-02-29 23:00:35 +01:00
|
|
|
- name: Build
|
|
|
|
# Build your program with the given configuration
|
|
|
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel
|
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
run: |
|
|
|
|
mkdir upload
|
2024-05-18 19:05:18 +02:00
|
|
|
move build/Release/shadPS4.exe upload
|
|
|
|
windeployqt --dir upload upload/shadPS4.exe
|
2024-02-29 23:00:35 +01:00
|
|
|
|
|
|
|
- name: Upload executable
|
2024-05-08 13:17:41 +02:00
|
|
|
uses: actions/upload-artifact@v4
|
2024-02-29 23:00:35 +01:00
|
|
|
with:
|
|
|
|
name: shadps4-win64-qt
|
2024-05-18 19:05:18 +02:00
|
|
|
path: upload
|