Test windwos build
Some checks failed
Unreal Engine Build / macos-build (push) Has been cancelled
Unreal Engine Build / windows-build (push) Failing after 6m59s

This commit is contained in:
Goran Lazarevski 2025-03-23 18:29:51 +01:00
parent ae25a4607f
commit 9f5d9a0e7b

View File

@ -7,45 +7,43 @@ on:
branches: [ main, develop ]
jobs:
# windows-build:
# runs-on: windows
# steps:
# - name: Checkout repository
# uses: actions/checkout@v3
# with:
# lfs: true
# fetch-depth: 0 # Get all history to properly handle UE dependencies
windows-build:
runs-on: windows
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
lfs: true
fetch-depth: 0
# - name: Setup Unreal Engine
# run: |
# # Ensure Unreal Engine is installed and set up
# # This assumes you have Unreal Engine installed on your runner
# # If not, you can add installation steps here
# # Set environment variables for Unreal Engine
# echo "UE_ROOT=C:\Program Files\Epic Games\UE_5.2" >> $GITHUB_ENV
# - name: Build Unreal Project
# run: |
# # Find your .uproject file (adjust path as needed)
# $UPROJECT_PATH = Get-ChildItem -Path . -Filter "*.uproject" -Recurse | Select-Object -First 1 -ExpandProperty FullName
# Write-Host "Building project: $UPROJECT_PATH"
# # Use Unreal Automation Tool to build the project
# & "$env:UE_ROOT\Engine\Build\BatchFiles\RunUAT.bat" BuildCookRun `
# -project="$UPROJECT_PATH" `
# -noP4 `
# -platform=Win64 `
# -clientconfig=Development `
# -cook -build -stage -pak -archive `
# -archivedirectory="$PWD\Build"
# - name: Upload build artifacts
# uses: actions/upload-artifact@v3
# with:
# name: windows-build
# path: Build/
# retention-days: 7
- name: Set Unreal Engine Path
run: |
echo "UE_ROOT=F:\LuckyRobots\LuckyRobots\Engine" >> $Env:GITHUB_ENV
echo "DOTNET_CLI_HOME=$env:TEMP" >> $Env:GITHUB_ENV
echo "MSBUILDDISABLENODEREUSE=1" >> $Env:GITHUB_ENV
- name: Locate .uproject file
run: |
$UPROJECT_PATH = Get-ChildItem -Path "UNREAL_PROJECTS" -Filter "*.uproject" -Recurse | Select-Object -First 1 -ExpandProperty FullName
echo "UPROJECT_PATH=$UPROJECT_PATH" >> $Env:GITHUB_ENV
Write-Host "Found project file: $UPROJECT_PATH"
- name: Build Unreal Project
run: |
& "$Env:UE_ROOT\Build\BatchFiles\RunUAT.bat" BuildCookRun `
-project="$Env:UPROJECT_PATH" `
-noP4 `
-platform=Win64 `
-clientconfig=Development `
-cook -build -stage -pak -archive `
-archivedirectory="${PWD}\StagedBuilds"
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: windows-build
path: StagedBuilds/
retention-days: 7
macos-build:
runs-on: macos