From dcce8581c50ed488bdf65dfb909587b0f31cab76 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 4 Dec 2024 23:39:00 +0100 Subject: [PATCH] Another iteration on cooking job --- .github/workflows/cooking.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cooking.yml b/.github/workflows/cooking.yml index 558c620b5..403d4dd57 100644 --- a/.github/workflows/cooking.yml +++ b/.github/workflows/cooking.yml @@ -1,4 +1,4 @@ -name: Cooking +name: Cook on: [push, pull_request] env: @@ -7,9 +7,9 @@ env: jobs: - # Cooking on Windows + # Cook on Windows tests-windows: - name: Cooking (Windows) + name: Cook (Windows) runs-on: "windows-2022" steps: - name: Checkout repo @@ -31,14 +31,14 @@ jobs: with: fetch-depth: 1 repository: FlaxEngine/FlaxSamples - path: FlaxSamples + path: ..\FlaxSamples - name: Build Editor run: | .\Development\Scripts\Windows\CallBuildTool.bat -build -log -printSDKs -dotnet=8 -arch=x64 -platform=Windows -configuration=Development -buildtargets=FlaxEditor - name: Cook Game run: | - cp -f -v .github\data\ExitOnEsc.cs FlaxSamples\MaterialsFeaturesTour\Source\Game - .\Binaries\Editor\Win64\Development\FlaxEditor.exe -std -headless -mute -null -project "${GITHUB_WORKSPACE}\FlaxSamples\MaterialsFeaturesTour" -build "Development.Windows" + cp .github\data\ExitOnEsc.cs ..\FlaxSamples\MaterialsFeaturesTour\Source\Game + .\Binaries\Editor\Win64\Development\FlaxEditor.exe -std -headless -mute -null -project "${GITHUB_WORKSPACE}\..\FlaxSamples\MaterialsFeaturesTour" -build "Development.Windows" - name: Test Game run: | - .\FlaxSamples\MaterialsFeaturesTour\Output\Windows\MaterialsFeaturesTour.exe" -std -headless -mute -null + ..\FlaxSamples\MaterialsFeaturesTour\Output\Windows\MaterialsFeaturesTour.exe -std -headless -mute -null