Skip to content

Commit

Permalink
add ue5 test
Browse files Browse the repository at this point in the history
  • Loading branch information
leejw51crypto committed Apr 25, 2024
1 parent 3a1b727 commit 002b042
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 27 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/dev-ue5.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Development

on:
push:
branches:
- main
paths-ignore:
- README.md
tags:
- "v*.*.*"
merge_group:
pull_request:
paths-ignore:
- README.md

jobs:
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
27 changes: 0 additions & 27 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,30 +40,3 @@ jobs:
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

0 comments on commit 002b042

Please sign in to comment.