Skip to content

Merge branch 'master' of https://github.com/PCSX2/pcsx2 #582

Merge branch 'master' of https://github.com/PCSX2/pcsx2

Merge branch 'master' of https://github.com/PCSX2/pcsx2 #582

name: Fork Windows Builds
on:
push:
branches:
- '*'
pull_request:
branches:
- master
workflow_dispatch:
jobs:
# MSBUILD
lint_vs_proj_files:
name: Lint VS Project Files
runs-on: windows-2022
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Verify VS Project Files
run: .github\workflows\scripts\windows\validate-vs-filters.ps1
build_qt_sse4:
needs: lint_vs_proj_files
name: "SSE4"
uses: ./.github/workflows/windows_build_qt_fork.yml
with:
jobName: Qt-SSE4
configuration: Release
simd: "SSE4"
secrets: inherit
build_qt_avx2:
needs: lint_vs_proj_files
name: "AVX2"
uses: ./.github/workflows/windows_build_qt_fork.yml
with:
jobName: Qt-AVX2
configuration: Release AVX2
secrets: inherit
build_qt_cmake:
name: "CMake"
uses: ./.github/workflows/windows_build_qt_fork.yml
with:
jobName: Qt-CMake
configuration: CMake
buildSystem: cmake
secrets: inherit
build_qt_clang_sse4:
needs: lint_vs_proj_files
name: "Clang-SSE4"
uses: ./.github/workflows/windows_build_qt_fork.yml
with:
jobName: Qt-Clang-SSE4
configuration: Release Clang
simd: "SSE4"
secrets: inherit
build_qt_clang_avx2:
needs: lint_vs_proj_files
name: "Clang-AVX2"
uses: ./.github/workflows/windows_build_qt_fork.yml
with:
jobName: Qt-Clang-AVX2
configuration: Release Clang AVX2
secrets: inherit
build_qt_cmake_clang:
name: "Clang-CMake"
uses: ./.github/workflows/windows_build_qt_fork.yml
with:
jobName: Qt-Clang-CMake
configuration: CMake
buildSystem: cmake
cmakeFlags: -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DPCSX2_EXE_NAME=pcsx2-qt-clang
secrets: inherit