Skip to content

Commit

Permalink
fix: added missing development build flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantotone committed May 28, 2024
1 parent dc51490 commit 56b2e87
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 6 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build-Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 #
#############################
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/build-Mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 #
#############################
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/build-Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 #
#############################
Expand Down

0 comments on commit 56b2e87

Please sign in to comment.