Skip to content

Commit 936a2f8

Browse files
committed
Add CI item for a non-unity build
1 parent f21d287 commit 936a2f8

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,21 @@ jobs:
288288
cmake-platform: "x64,version=10.0.22621.0"
289289
visual-studio-version: "2022"
290290
visual-studio-components: "Microsoft.VisualStudio.Component.VC.14.38.17.8.x86.x64,Microsoft.VisualStudio.Component.Windows11SDK.22621"
291+
Windows56NonUnityBuild:
292+
uses: ./.github/workflows/buildWindows.yml
293+
secrets: inherit
294+
with:
295+
runner-label: "windows-2022"
296+
unreal-unity-build: false
297+
unreal-engine-version: "5.6.0"
298+
unreal-engine-zip: "s3://cesium-unreal-engine/5.6.0/UE_5.6.zip"
299+
unreal-program-name: "UE_5.6"
300+
upload-package-base-name: "CesiumForUnreal-56-windows"
301+
cmake-generator: "Visual Studio 17 2022"
302+
cmake-toolchain: "version=14.38"
303+
cmake-platform: "x64,version=10.0.22621.0"
304+
visual-studio-version: "2022"
305+
visual-studio-components: "Microsoft.VisualStudio.Component.VC.14.38.17.8.x86.x64,Microsoft.VisualStudio.Component.Windows11SDK.22621"
291306
TestWindows56:
292307
needs: [Windows56]
293308
uses: ./.github/workflows/testWindows.yml

.github/workflows/buildWindows.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ on:
4545
required: false
4646
type: string
4747
default: "x64"
48+
unreal-unity-build:
49+
required: false
50+
type: boolean
51+
default: true
4852
jobs:
4953
build:
5054
runs-on: ${{ inputs.runner-label }}
@@ -122,6 +126,7 @@ jobs:
122126
<Configuration xmlns="https://www.unrealengine.com/BuildConfiguration">
123127
<BuildConfiguration>
124128
<MaxParallelActions>2</MaxParallelActions>
129+
<bUseUnityBuild>${{ inputs.unreal-unity-build }}</bUseUnityBuild>
125130
</BuildConfiguration>
126131
<SourceFileWorkingSet><Provider>None</Provider></SourceFileWorkingSet>
127132
</Configuration>'

0 commit comments

Comments
 (0)