Skip to content

Problem: error in destroyCoreClient (fix #346) #395

Problem: error in destroyCoreClient (fix #346)

Problem: error in destroyCoreClient (fix #346) #395

Workflow file for this run

name: Development
on:
push:
branches:
- main
paths-ignore:
- README.md
tags:
- "v*.*.*"
merge_group:
pull_request:
paths-ignore:
- README.md
jobs:
Unreal_Build_4_27:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Setup
run: |
sudo chmod 777 $GITHUB_WORKSPACE
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
sudo rm -rf /usr/local/lib/android
TARGET=4.27 make
python change_version.py 4.27.0
- uses: addnab/docker-run-action@v3
with:
registry: ghcr.io
username: ${{ secrets.USER }}
password: ${{ secrets.PAT }}
image: ghcr.io/epicgames/unreal-engine:dev-slim-4.27.2
options: -v ${{ github.workspace }}:/home/ue4/play-unreal-plugin -e HOME=/home/ue4
run: |
cd ~/play-unreal-plugin
make RunUAT
Unreal_Build_5_1:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Setup
run: |
sudo chmod 777 $GITHUB_WORKSPACE
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
sudo rm -rf /usr/local/lib/android
TARGET=5.1 make
python change_version.py 5.1.0
- uses: addnab/docker-run-action@v3
with:
registry: ghcr.io
username: ${{ secrets.USER }}
password: ${{ secrets.PAT }}
image: ghcr.io/epicgames/unreal-engine:dev-slim-5.1
options: -v ${{ github.workspace }}:/home/ue4/play-unreal-plugin -e HOME=/home/ue4
run: |
cd ~/play-unreal-plugin
make RunUAT