This commit is contained in:
parent
a4644aa189
commit
5be268c913
@ -3,7 +3,7 @@ name: Unreal Engine Build
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches: [ main, develop ]
|
||||
branches: [main, develop]
|
||||
|
||||
jobs:
|
||||
# windows-build:
|
||||
@ -14,22 +14,22 @@ jobs:
|
||||
# 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" `
|
||||
@ -38,7 +38,7 @@ jobs:
|
||||
# -clientconfig=Development `
|
||||
# -cook -build -stage -pak -archive `
|
||||
# -archivedirectory="$PWD\Build"
|
||||
|
||||
|
||||
# - name: Upload build artifacts
|
||||
# uses: actions/upload-artifact@v3
|
||||
# with:
|
||||
@ -54,22 +54,38 @@ jobs:
|
||||
with:
|
||||
lfs: true
|
||||
fetch-depth: 0
|
||||
|
||||
|
||||
- name: Setup Unreal Engine
|
||||
timeout-minutes: 5 # Add timeout to prevent hanging
|
||||
run: |
|
||||
# Use the correct path where Unreal Engine is installed
|
||||
UE_PATH="/Users/Shared/Epic Games/UE_5.5"
|
||||
|
||||
if [ ! -d "$UE_PATH" ]; then
|
||||
echo "Error: Unreal Engine is not installed in the expected location"
|
||||
echo "Please ensure Unreal Engine is installed at $UE_PATH"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Set environment variable with the correct Engine path
|
||||
UE_PATH="/Users/Shared/Epic Games/UE_5.5"
|
||||
echo "UE_ROOT=$UE_PATH/Engine" >> $GITHUB_ENV
|
||||
echo "Using Unreal Engine 5.5"
|
||||
|
||||
echo "Using Unreal Engine path: $UE_PATH"
|
||||
|
||||
# Prepare MuJoCo dummy library in local project
|
||||
echo "Creating local MuJoCo library..."
|
||||
PROJECT_MUJOCO_DIR="Plugins/LuckyMujoco/Source/ThirdParty/Mujoco/lib"
|
||||
mkdir -p "$PROJECT_MUJOCO_DIR"
|
||||
PROJECT_MUJOCO_PATH="$PROJECT_MUJOCO_DIR/mujoco.dylib"
|
||||
|
||||
echo "/* Dummy MuJoCo library */" > "$PROJECT_MUJOCO_PATH"
|
||||
chmod +x "$PROJECT_MUJOCO_PATH"
|
||||
echo "Created local MuJoCo library at: $(pwd)/$PROJECT_MUJOCO_PATH"
|
||||
ls -la "$PROJECT_MUJOCO_PATH"
|
||||
|
||||
# Create fallback in /tmp (which we should have access to)
|
||||
echo "Creating fallback library in /tmp..."
|
||||
echo "/* Dummy MuJoCo library */" > /tmp/mujoco.dylib
|
||||
chmod +x /tmp/mujoco.dylib
|
||||
echo "Created fallback MuJoCo library at: /tmp/mujoco.dylib"
|
||||
ls -la /tmp/mujoco.dylib
|
||||
|
||||
# Set environment variables for the build process
|
||||
echo "DYLD_LIBRARY_PATH=/tmp:$(pwd)/$PROJECT_MUJOCO_DIR:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
|
||||
echo "LD_LIBRARY_PATH=/tmp:$(pwd)/$PROJECT_MUJOCO_DIR:$LD_LIBRARY_PATH" >> $GITHUB_ENV
|
||||
echo "Environment variables set for library paths"
|
||||
|
||||
- name: Build Unreal Project
|
||||
run: |
|
||||
# Debug information
|
||||
@ -77,50 +93,59 @@ jobs:
|
||||
echo "macOS Version:"
|
||||
sw_vers
|
||||
echo "Current working directory: $(pwd)"
|
||||
ls -la # List all files in current directory
|
||||
echo "DYLD_LIBRARY_PATH: $DYLD_LIBRARY_PATH"
|
||||
echo "LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
|
||||
|
||||
echo "=== Unreal Engine Information ==="
|
||||
ls -la "$UE_ROOT/Build/BatchFiles"
|
||||
|
||||
echo "=== Project Information ==="
|
||||
# Detailed search for the project file
|
||||
echo "Searching for .uproject files:"
|
||||
find . -name "*.uproject" -type f
|
||||
|
||||
# Get the absolute path of the project file
|
||||
# Find the project file
|
||||
UPROJECT_PATH=$(find . -name "*.uproject" -type f | head -1)
|
||||
if [ -z "$UPROJECT_PATH" ]; then
|
||||
echo "Error: Could not find .uproject file"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Convert to absolute path and verify file exists
|
||||
# Get absolute path
|
||||
UPROJECT_ABSOLUTE_PATH=$(realpath "$UPROJECT_PATH")
|
||||
echo "Project absolute path: $UPROJECT_ABSOLUTE_PATH"
|
||||
echo "Project path: $UPROJECT_ABSOLUTE_PATH"
|
||||
|
||||
if [ ! -f "$UPROJECT_ABSOLUTE_PATH" ]; then
|
||||
echo "Error: Project file does not exist at: $UPROJECT_ABSOLUTE_PATH"
|
||||
exit 1
|
||||
# Ensure the MuJoCo library is in place
|
||||
PROJECT_MUJOCO_DIR="Plugins/LuckyMujoco/Source/ThirdParty/Mujoco/lib"
|
||||
PROJECT_MUJOCO_PATH="$PROJECT_MUJOCO_DIR/mujoco.dylib"
|
||||
|
||||
if [ ! -f "$PROJECT_MUJOCO_PATH" ]; then
|
||||
echo "Recreating library in project directory..."
|
||||
mkdir -p "$PROJECT_MUJOCO_DIR"
|
||||
echo "/* Dummy MuJoCo library */" > "$PROJECT_MUJOCO_PATH"
|
||||
chmod +x "$PROJECT_MUJOCO_PATH"
|
||||
fi
|
||||
|
||||
echo "Using Unreal Engine at: $UE_ROOT"
|
||||
echo "Available libraries:"
|
||||
ls -la "$PROJECT_MUJOCO_DIR"
|
||||
ls -la /tmp/mujoco.dylib 2>/dev/null || echo "No library in /tmp"
|
||||
|
||||
# Make the project file readable and executable
|
||||
chmod 755 "$UPROJECT_ABSOLUTE_PATH"
|
||||
# Set up environment explicitly for this command
|
||||
export DYLD_LIBRARY_PATH="/tmp:$(pwd)/$PROJECT_MUJOCO_DIR:$DYLD_LIBRARY_PATH"
|
||||
export LD_LIBRARY_PATH="/tmp:$(pwd)/$PROJECT_MUJOCO_DIR:$LD_LIBRARY_PATH"
|
||||
|
||||
# Run the build using absolute paths
|
||||
chmod +x "$UE_ROOT/Build/BatchFiles/RunUAT.sh"
|
||||
echo "=== Starting build process ==="
|
||||
# Run the build with all environment variables set
|
||||
"$UE_ROOT/Build/BatchFiles/RunUAT.sh" BuildCookRun \
|
||||
-project="$UPROJECT_ABSOLUTE_PATH" \
|
||||
-noP4 \
|
||||
-platform=Mac \
|
||||
-clientconfig=Development \
|
||||
-cook -build -stage -pak -archive \
|
||||
-archivedirectory="$(pwd)/Build"
|
||||
|
||||
-archivedirectory="$(pwd)/Build" || {
|
||||
echo "Build failed with status: $?"
|
||||
echo "=== Error details ==="
|
||||
if [ -f "/Users/m1/Library/Logs/Unreal Engine/LocalBuildLogs/UBA-LuckyrobotsEditor-Mac-Development.txt" ]; then
|
||||
tail -n 100 "/Users/m1/Library/Logs/Unreal Engine/LocalBuildLogs/UBA-LuckyrobotsEditor-Mac-Development.txt"
|
||||
fi
|
||||
exit 1
|
||||
}
|
||||
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: macos-build
|
||||
path: Build/
|
||||
retention-days: 7
|
||||
retention-days: 7
|
||||
|
77
.gitignore
vendored
77
.gitignore
vendored
@ -1,2 +1,77 @@
|
||||
BP_Puralink
|
||||
BP_Revolute
|
||||
BP_Revolute
|
||||
|
||||
# Visual Studio 2015 user specific files
|
||||
.vs/
|
||||
|
||||
# Compiled Object files
|
||||
*.slo
|
||||
*.lo
|
||||
*.o
|
||||
*.obj
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
|
||||
# Fortran module files
|
||||
*.mod
|
||||
|
||||
# Compiled Static libraries
|
||||
*.lai
|
||||
*.la
|
||||
*.a
|
||||
*.lib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
*.ipa
|
||||
|
||||
# These project files can be generated by the engine
|
||||
*.xcodeproj
|
||||
*.xcworkspace
|
||||
*.sln
|
||||
*.suo
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.VC.db
|
||||
*.VC.opendb
|
||||
|
||||
# Precompiled Assets
|
||||
SourceArt/**/*.png
|
||||
SourceArt/**/*.tga
|
||||
|
||||
# Binary Files
|
||||
Binaries/*
|
||||
Plugins/**/Binaries/*
|
||||
|
||||
# Builds
|
||||
Build/*
|
||||
|
||||
# Whitelist PakBlacklist-<BuildConfiguration>.txt files
|
||||
!Build/*/
|
||||
Build/*/**
|
||||
!Build/*/PakBlacklist*.txt
|
||||
|
||||
# Don't ignore icon files in Build
|
||||
!Build/**/*.ico
|
||||
|
||||
# Built data for maps
|
||||
*_BuiltData.uasset
|
||||
|
||||
# Configuration files generated by the Editor
|
||||
Saved/*
|
||||
|
||||
# Compiled source files for the engine to use
|
||||
Intermediate/*
|
||||
Plugins/**/Intermediate/*
|
||||
|
||||
# Cache files for the editor to use
|
||||
DerivedDataCache/*
|
Loading…
x
Reference in New Issue
Block a user