Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kirre-bylund committed Nov 1, 2024
1 parent 31a22ce commit c7a1895
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-with-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
- name: Make build & log locations
run: |
mkdir -p ../../tmp/build
mkdir -p ../../tmp/logs
mkdir -p tmp/build
mkdir -p tmp/logs
- name: Set plugin information variables
run: |
Expand All @@ -57,13 +57,13 @@ jobs:
- name: Build Plugin with Unreal Automation Tool in image ${{ matrix.UE_IMAGE }}
run: |
docker run --rm -v "$(pwd):/mnt/source" -v "$(pwd)/../../tmp/build:/mnt/build" -v "$(pwd)/../../tmp/build:/mnt/logs" ghcr.io/epicgames/unreal-engine:${{ matrix.UE_IMAGE }} sh -c "/home/ue4/UnrealEngine/Engine/Build/BatchFiles/RunUAT.sh BuildPlugin -TargetPlatforms="Linux" -Plugin="/mnt/source/${SDK_NAME}/${SDK_NAME}.uplugin" -Package="/mnt/build" -Rocket -enablecodeanalysis" 2>&1 | tee ../../tmp/logs/UAT.log
docker run --rm -v "$(pwd):/mnt/source" ghcr.io/epicgames/unreal-engine:${{ matrix.UE_IMAGE }} sh -c "/home/ue4/UnrealEngine/Engine/Build/BatchFiles/RunUAT.sh BuildPlugin -TargetPlatforms="Linux" -Plugin="/mnt/source/${SDK_NAME}/${SDK_NAME}.uplugin" -Package="/mnt/source/build" -Rocket -enablecodeanalysis" 2>&1 | tee tmp/logs/UAT.log
- name: Expose log as artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.UE_IMAGE }}-UAT.log
path: ${{ ENV.SDK_PATH }}/../../tmp/logs/UAT.log
path: ${{ ENV.SDK_PATH }}/tmp/logs/UAT.log

- name: Check build result
run: |
Expand Down

0 comments on commit c7a1895

Please sign in to comment.