lyra_game_ue/win_build.sh

42 lines
1.3 KiB
Bash
Raw Normal View History

2025-03-28 18:14:53 +01:00
#!/bin/bash
set -e
# Optional: Check for a Gitea runner-specific environment variable.
# You can set a variable like GITEA_RUNNER in your runner configuration.
if [ -z "$GITEA_RUNNER" ]; then
echo "Warning: This script does not appear to be running in a Gitea runner environment."
fi
# Get the user's home directory (if needed)
USER_HOME="$HOME"
# Set up Unreal Engine paths for Windows
# Adjust the UE_ROOT path if your installation differs.
2025-04-01 18:54:45 +02:00
UE_ROOT="${UE_ROOT:-E:/Games/UE_5.5}"
2025-03-28 18:14:53 +01:00
UE_EDITOR="$UE_ROOT/Engine/Binaries/Win64/UnrealEditor.exe"
UE_UAT="$UE_ROOT/Engine/Build/BatchFiles/RunUAT.bat"
# Set up project paths based on the current working directory
2025-04-01 18:54:45 +02:00
WORKSPACE_DIR=$(pwd)
PROJECT_FILE="$WORKSPACE_DIR/LyraStarterGame.uproject"
BUILD_DIR="$WORKSPACE_DIR/Builds/Windows"
2025-03-28 18:14:53 +01:00
# Create the archive directory if it does not exist
2025-04-01 18:54:45 +02:00
mkdir -p "$BUILD_DIR"
2025-03-28 18:14:53 +01:00
2025-04-01 18:54:45 +02:00
echo "Starting Windows build of LyraGame via Gitea Runner..."
2025-03-28 18:14:53 +01:00
# Run the build command using Unreal's Automation Tool (UAT)
2025-04-01 18:54:45 +02:00
"$UE_ROOT/Engine/Build/BatchFiles/RunUAT.bat" BuildCookRun \
2025-03-28 18:14:53 +01:00
-project="$PROJECT_FILE" \
2025-04-01 18:54:45 +02:00
-noP4 \
2025-03-28 18:14:53 +01:00
-platform=Win64 \
2025-04-01 18:54:45 +02:00
-clientconfig=Shipping \
-cook -allmaps \
-build -stage -pak -archive \
-archivedirectory="$BUILD_DIR" \
-target=LyraGame \
-unrealexe="$UE_EDITOR"
echo "Windows build completed successfully"