lyra_game_ue/linux_build.sh

27 lines
734 B
Bash
Raw Normal View History

2025-03-28 18:14:53 +01:00
#!/bin/bash
set -e
2025-04-01 18:54:45 +02:00
echo "Starting Linux build of LyraGame via Gitea Runner..."
2025-03-28 18:14:53 +01:00
2025-04-01 18:54:45 +02:00
# Get absolute paths
WORKSPACE_DIR=$(pwd)
PROJECT_FILE="$WORKSPACE_DIR/LyraStarterGame.uproject"
BUILD_DIR="$WORKSPACE_DIR/Builds/Linux"
UE_ROOT="${UE_ROOT:-E:/Games/UE_5.5}"
2025-03-28 18:14:53 +01:00
2025-04-01 18:54:45 +02:00
# Ensure build directory exists
mkdir -p "$BUILD_DIR"
2025-03-28 18:14:53 +01:00
2025-04-01 18:54:45 +02:00
# Run the Unreal Automation Tool with the correct target name
"$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=Linux \
2025-04-01 18:54:45 +02:00
-clientconfig=Shipping \
-cook -allmaps \
-build -stage -pak -archive \
-archivedirectory="$BUILD_DIR" \
-target=LyraGame \
-unrealexe="$UE_ROOT/Engine/Binaries/Win64/UnrealEditor.exe"
echo "Linux build completed successfully"