Skip to content

Commit

Permalink
Try running UDK.com directly
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Nov 13, 2023
1 parent 649dc2e commit da1e8c2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/udk-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,14 @@ jobs:
- run: python --version

- name: Run UDK build and test script
timeout-minutes: 5
timeout-minutes: 1
run: python .\tests\UDKTests\setup_udk_build_env.py

- name: TEST TODO
timeout-minutes: 1
if: always()
run: .\tests\UDKTests\UDK-Lite\Binaries\Win64\UDK.com make -useunpublished

- name: Archive UDK build and test logs
uses: actions/upload-artifact@v3
if: always()
Expand Down
8 changes: 4 additions & 4 deletions tests/UDKTests/setup_udk_build_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ async def run_udk_build(
cmd=f'powershell.exe Start-Process -NoNewWindow -FilePath "{udk_exe}" '
f'-ArgumentList "make","-useunpublished","-UNATTENDED","LOG=Launch.log",'
f'"-NOPAUSE","-FORCELOGFLUSH","-AUTO"',
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.STDOUT,
# stdout=asyncio.subprocess.PIPE,
# stderr=asyncio.subprocess.STDOUT,
)
else:
proc = await asyncio.create_subprocess_exec(
Expand Down Expand Up @@ -321,8 +321,8 @@ async def run_udk_server(
cmd=f'powershell.exe Start-Process -NoNewWindow -FilePath "{udk_exe}" '
f'-ArgumentList "server","{udk_args}","-UNATTENDED","LOG=Launch.log",'
f'"-NOPAUSE","-FORCELOGFLUSH","-AUTO"',
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.STDOUT,
# stdout=asyncio.subprocess.PIPE,
# stderr=asyncio.subprocess.STDOUT,
)
else:
test_proc = await asyncio.create_subprocess_exec(
Expand Down

0 comments on commit da1e8c2

Please sign in to comment.