Use absolute path for LR
This commit is contained in:
parent
7543b2962f
commit
a77d952750
@ -78,34 +78,47 @@ jobs:
|
|||||||
echo "=== Environment Information ==="
|
echo "=== Environment Information ==="
|
||||||
echo "macOS Version:"
|
echo "macOS Version:"
|
||||||
sw_vers
|
sw_vers
|
||||||
|
echo "Current working directory: $(pwd)"
|
||||||
|
ls -la # List all files in current directory
|
||||||
|
|
||||||
echo "=== Unreal Engine Information ==="
|
echo "=== Unreal Engine Information ==="
|
||||||
ls -la "$UE_ROOT/Build/BatchFiles"
|
ls -la "$UE_ROOT/Build/BatchFiles"
|
||||||
|
|
||||||
echo "=== Project Information ==="
|
echo "=== Project Information ==="
|
||||||
|
# Detailed search for the project file
|
||||||
|
echo "Searching for .uproject files:"
|
||||||
|
find . -name "*.uproject" -type f
|
||||||
|
|
||||||
source "$GITHUB_ENV"
|
# Get the absolute path of the project file
|
||||||
|
|
||||||
UPROJECT_PATH=$(find . -name "*.uproject" -type f | head -1)
|
UPROJECT_PATH=$(find . -name "*.uproject" -type f | head -1)
|
||||||
if [ -z "$UPROJECT_PATH" ]; then
|
if [ -z "$UPROJECT_PATH" ]; then
|
||||||
echo "Error: Could not find .uproject file"
|
echo "Error: Could not find .uproject file"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
echo "Building project: $UPROJECT_PATH"
|
|
||||||
|
|
||||||
echo "Using Unreal Engine at: $UE_ROOT"
|
# Convert to absolute path and verify file exists
|
||||||
if [ ! -f "$UE_ROOT/Build/BatchFiles/RunUAT.sh" ]; then
|
UPROJECT_ABSOLUTE_PATH=$(realpath "$UPROJECT_PATH")
|
||||||
echo "Error: RunUAT.sh not found at $UE_ROOT/Build/BatchFiles/RunUAT.sh"
|
echo "Project absolute path: $UPROJECT_ABSOLUTE_PATH"
|
||||||
echo "Please check UE_ROOT path"
|
|
||||||
|
if [ ! -f "$UPROJECT_ABSOLUTE_PATH" ]; then
|
||||||
|
echo "Error: Project file does not exist at: $UPROJECT_ABSOLUTE_PATH"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "Using Unreal Engine at: $UE_ROOT"
|
||||||
|
|
||||||
|
# Make the project file readable and executable
|
||||||
|
chmod 755 "$UPROJECT_ABSOLUTE_PATH"
|
||||||
|
|
||||||
|
# Run the build using absolute paths
|
||||||
chmod +x "$UE_ROOT/Build/BatchFiles/RunUAT.sh"
|
chmod +x "$UE_ROOT/Build/BatchFiles/RunUAT.sh"
|
||||||
"$UE_ROOT/Build/BatchFiles/RunUAT.sh" BuildCookRun \
|
"$UE_ROOT/Build/BatchFiles/RunUAT.sh" BuildCookRun \
|
||||||
-project="$UPROJECT_PATH" \
|
-project="$UPROJECT_ABSOLUTE_PATH" \
|
||||||
-noP4 \
|
-noP4 \
|
||||||
-platform=Mac \
|
-platform=Mac \
|
||||||
-clientconfig=Development \
|
-clientconfig=Development \
|
||||||
-cook -build -stage -pak -archive \
|
-cook -build -stage -pak -archive \
|
||||||
-archivedirectory="$PWD/Build"
|
-archivedirectory="$(pwd)/Build"
|
||||||
|
|
||||||
- name: Upload build artifacts
|
- name: Upload build artifacts
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user