Skip to content

Commit

Permalink
Merge pull request duckdb#131 from carlopi/allow_skip
Browse files Browse the repository at this point in the history
Pass down optional skip_tests input
  • Loading branch information
carlopi authored Oct 1, 2024
2 parents 93b36ab + 64b6ac7 commit e90c0dd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
type: string
more_excluded:
type: string
skip_tests:
required: false
type: boolean
default: false
workflow_call:
inputs:
extension_name:
Expand All @@ -32,6 +36,10 @@ on:
type: string
more_excluded:
type: string
skip_tests:
required: false
type: boolean
default: false

jobs:
prepare:
Expand Down Expand Up @@ -87,6 +95,7 @@ jobs:
override_ref: ${{ needs.prepare.outputs.COMMUNITY_EXTENSION_REF }}
vcpkg_url: ${{ needs.prepare.outputs.COMMUNITY_EXTENSION_VCPKG_URL}}
vcpkg_commit: ${{ needs.prepare.outputs.COMMUNITY_EXTENSION_VCPKG_COMMIT}}
skip_tests: ${{ inputs.skip_tests || false }}

doc_test:
if: ${{ inputs.deploy != 'false' }}
Expand Down

0 comments on commit e90c0dd

Please sign in to comment.