Skip to content

Commit

Permalink
Make test-nix optional
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulreddy15 committed Nov 13, 2024
1 parent fda66e2 commit 964c9cf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/reusable_pre_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ on:
required: false
type: boolean
default: true
run_test_nix:
required: false
type: boolean
default: true
run_test_windows:
required: false
type: boolean
Expand Down Expand Up @@ -87,6 +91,7 @@ env:

jobs:
test-nix:
if: ${{ inputs.run_test_nix }}
uses: ./.github/workflows/_test_nix.yaml

test-windows:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/reusable_push_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
integration:
required: false
type: string
run_test_nix:
required: false
type: boolean
default: true
run_test_windows:
required: false
type: boolean
Expand Down Expand Up @@ -44,6 +48,7 @@ jobs:
uses: ./.github/workflows/_static_analysis.yaml

test-nix:
if: ${{ inputs.run_test_nix }}
uses: ./.github/workflows/_test_nix.yaml

test-windows:
Expand Down

0 comments on commit 964c9cf

Please sign in to comment.