Fix windows non-PCH build

This commit is contained in:
sentientstardust
2026-05-20 03:41:37 +01:00
parent 6646aba3cf
commit b86100aa14
34 changed files with 116 additions and 37 deletions

View File

@ -12,15 +12,19 @@ on:
build-deps-only:
required: false
type: boolean
force-build:
required: false
type: boolean
force-build:
required: false
type: boolean
release-version:
required: false
type: string
default: ''
jobs:
build_without_pch_windows:
required: false
type: boolean
default: false
jobs:
check_cache: # determines if there is a cache and outputs variables used in caching process
name: Check Cache
runs-on: ${{ inputs.os }}
@ -63,7 +67,8 @@ jobs:
valid-cache: ${{ needs.check_cache.outputs.valid-cache == 'true' }}
os: ${{ inputs.os }}
arch: ${{ inputs.arch }}
build-deps-only: ${{ inputs.build-deps-only }}
force-build: ${{ inputs.force-build }}
build-deps-only: ${{ inputs.build-deps-only }}
force-build: ${{ inputs.force-build }}
release-version: ${{ inputs.release-version }}
secrets: inherit
build_without_pch_windows: ${{ inputs.build_without_pch_windows }}
secrets: inherit