mirror of https://github.com/PCSX2/pcsx2.git
58 lines
1.2 KiB
YAML
58 lines
1.2 KiB
YAML
|
name: 🖥️ Windows Builds
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- '*'
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
# MSBUILD
|
||
|
lint_vs_proj_files:
|
||
|
name: Lint VS Project Files
|
||
|
runs-on: windows-2019
|
||
|
steps:
|
||
|
- name: Checkout Repository
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Verify VS Project Files
|
||
|
run: .github\workflows\scripts\windows\validate-vs-filters.ps1
|
||
|
|
||
|
build_wx:
|
||
|
needs: lint_vs_proj_files
|
||
|
name: "SSE4"
|
||
|
uses: ./.github/workflows/windows_build_wx.yml
|
||
|
with:
|
||
|
jobName: wxWidgets
|
||
|
configuration: Release
|
||
|
simd: "SSE4"
|
||
|
secrets: inherit
|
||
|
|
||
|
build_wx_avx2:
|
||
|
needs: lint_vs_proj_files
|
||
|
name: "AVX2"
|
||
|
uses: ./.github/workflows/windows_build_wx.yml
|
||
|
with:
|
||
|
jobName: wxWidgets
|
||
|
configuration: Release AVX2
|
||
|
secrets: inherit
|
||
|
|
||
|
build_qt_avx2:
|
||
|
needs: lint_vs_proj_files
|
||
|
name: "AVX2"
|
||
|
uses: ./.github/workflows/windows_build_qt.yml
|
||
|
with:
|
||
|
jobName: Qt
|
||
|
configuration: Release AVX2
|
||
|
secrets: inherit
|
||
|
|
||
|
# CMAKE
|
||
|
build_wx_avx2_cmake:
|
||
|
name: "CMake AVX2"
|
||
|
uses: ./.github/workflows/windows_build_wx.yml
|
||
|
with:
|
||
|
jobName: wxWidgets
|
||
|
configuration: CMake
|
||
|
secrets: inherit
|