Another iteration on cooking job

This commit is contained in:
Wojtek Figat
2024-12-05 12:23:32 +01:00
parent 4ac334acac
commit 987916cc1c
2 changed files with 3 additions and 2 deletions

View File

@@ -39,11 +39,11 @@ jobs:
- name: Cook Game (Windows)
shell: cmd
run: |
start /w Binaries\Editor\Win64\Development\FlaxEditor.exe -std -headless -mute -null -project "FlaxSamples\MaterialsFeaturesTour" -build "Development.Windows"
Binaries\Editor\Win64\Development\FlaxEditor.exe -std -headless -mute -null -project "FlaxSamples\MaterialsFeaturesTour" -build "Development.Windows"
- name: Test Game (Windows)
shell: cmd
run: |
start /w FlaxSamples\MaterialsFeaturesTour\Output\Windows\MaterialsFeaturesTour.exe -std -headless -mute -null
FlaxSamples\MaterialsFeaturesTour\Output\Windows\MaterialsFeaturesTour.exe -std -headless -mute -null
# Cook on Mac
cook-mac:

View File

@@ -473,6 +473,7 @@ int32 MacPlatform::CreateProcess(CreateProcessSettings& settings)
{
NSPipe *stdoutPipe = [NSPipe pipe];
[task setStandardOutput:stdoutPipe];
[task setStandardError:stdoutPipe];
outputObserver = [[NSNotificationCenter defaultCenter]
addObserverForName: NSFileHandleDataAvailableNotification