Skip to content

Commit

Permalink
Merge pull request #4464 from myk002/myk_test_opt
Browse files Browse the repository at this point in the history
make windows/linux builds optional
  • Loading branch information
myk002 authored Apr 13, 2024
2 parents a0e6dc5 + 0306ce1 commit b273c9c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,19 @@ on:
launchdf:
type: boolean
default: false
include_windows:
type: boolean
default: true
include_linux:
type: boolean
default: true


jobs:
package-win64:
name: Windows
uses: ./.github/workflows/build-windows.yml
if: inputs.include_windows
with:
dfhack_ref: ${{ inputs.dfhack_ref }}
scripts_ref: ${{ inputs.scripts_ref }}
Expand All @@ -40,6 +48,7 @@ jobs:
package-linux:
name: Linux
uses: ./.github/workflows/build-linux.yml
if: inputs.include_linux
with:
dfhack_ref: ${{ inputs.dfhack_ref }}
scripts_ref: ${{ inputs.scripts_ref }}
Expand Down

0 comments on commit b273c9c

Please sign in to comment.