From 56b2e87a0e33cf8bea463981abb792af898ff6de Mon Sep 17 00:00:00 2001 From: Pantotone Date: Tue, 28 May 2024 04:52:56 -0300 Subject: [PATCH] fix: added missing development build flag --- .github/workflows/build-Linux.yml | 11 +++++++++-- .github/workflows/build-Mac.yml | 11 +++++++++-- .github/workflows/build-Windows.yml | 11 +++++++++-- 3 files changed, 27 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-Linux.yml b/.github/workflows/build-Linux.yml index 5c14167..aab4371 100644 --- a/.github/workflows/build-Linux.yml +++ b/.github/workflows/build-Linux.yml @@ -147,15 +147,22 @@ jobs: key: ${{ env.platform }}-YARG_Library ############################# - # Add Nightly definition # + # Add build flag definition # ############################# - if: ${{ inputs.buildType == 'nightly' }} - name: "[Pre-build] Create a csc.rsp file" + name: "[Pre-build] Create a csc.rsp file (nightly)" shell: bash run: > touch Assets/csc.rsp && echo "-define:YARG_NIGHTLY_BUILD" >> Assets/csc.rsp + - if: ${{ inputs.buildType == 'development' }} + name: "[Pre-build] Create a csc.rsp file (development)" + shell: bash + run: > + touch Assets/csc.rsp && + echo "-define:YARG_TEST_BUILD" >> Assets/csc.rsp + ############################# # Install Blender # ############################# diff --git a/.github/workflows/build-Mac.yml b/.github/workflows/build-Mac.yml index e1c2cef..15ce030 100644 --- a/.github/workflows/build-Mac.yml +++ b/.github/workflows/build-Mac.yml @@ -114,15 +114,22 @@ jobs: key: ${{ env.platform }}-YARG_Library ############################# - # Add Nightly definition # + # Add build flag definition # ############################# - if: ${{ inputs.buildType == 'nightly' }} - name: "[Pre-build] Create a csc.rsp file" + name: "[Pre-build] Create a csc.rsp file (nightly)" shell: bash run: > touch Assets/csc.rsp && echo "-define:YARG_NIGHTLY_BUILD" >> Assets/csc.rsp + - if: ${{ inputs.buildType == 'development' }} + name: "[Pre-build] Create a csc.rsp file (development)" + shell: bash + run: > + touch Assets/csc.rsp && + echo "-define:YARG_TEST_BUILD" >> Assets/csc.rsp + ############################# # Install Blender # ############################# diff --git a/.github/workflows/build-Windows.yml b/.github/workflows/build-Windows.yml index f4d2d65..3c23de0 100644 --- a/.github/workflows/build-Windows.yml +++ b/.github/workflows/build-Windows.yml @@ -141,15 +141,22 @@ jobs: key: ${{ env.platform }}-YARG_Library ############################# - # Add Nightly definition # + # Add build flag definition # ############################# - if: ${{ inputs.buildType == 'nightly' }} - name: "[Pre-build] Create a csc.rsp file" + name: "[Pre-build] Create a csc.rsp file (nightly)" shell: bash run: > touch Assets/csc.rsp && echo "-define:YARG_NIGHTLY_BUILD" >> Assets/csc.rsp + - if: ${{ inputs.buildType == 'development' }} + name: "[Pre-build] Create a csc.rsp file (development)" + shell: bash + run: > + touch Assets/csc.rsp && + echo "-define:YARG_TEST_BUILD" >> Assets/csc.rsp + ############################# # Install Blender # #############################