Skip to content

Commit

Permalink
Add types to all inputs; add options to partition_sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
Raunak Bhagat committed Nov 22, 2024
1 parent 6a0380e commit 8231b9f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build-commit-run-tpch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ on:
workflow_dispatch:
inputs:
skip_questions:
type: string
description: The TPC-H questions to skip
required: false
default: ""
scale_factor:
description: Which scale factor to use
required: false
type: choice
options:
- '2'
- '10'
- '100'
- '1000'
description: Which scale factor to use
required: false
default: '2'
partition_size:
description: Which partition size to use
required: false
type: choice
options:
- '2'
- '32'
Expand All @@ -28,8 +28,11 @@ on:
- '300'
- '320'
- '512'
description: Which partition size to use
required: false
default: '2'
python_version:
type: string
description: The version of python to use
required: false
default: '3.9'
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/run-tpch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,27 @@ on:
workflow_dispatch:
inputs:
wheel:
type: string
description: The wheel artifact to use
required: false
default: getdaft-0.3.0.dev0-cp38-abi3-manylinux_2_31_x86_64.whl
skip_questions:
type: string
description: The TPC-H questions to skip
required: false
default: ""
scale_factor:
description: Which scale factor to use
required: false
type: choice
options:
- '2'
- '10'
- '100'
- '1000'
description: Which scale factor to use
required: false
default: '2'
partition_size:
description: Which partition size to use
required: false
type: choice
options:
- '2'
- '32'
Expand All @@ -32,8 +33,11 @@ on:
- '300'
- '320'
- '512'
description: Which partition size to use
required: false
default: '2'
python_version:
type: string
description: The version of python to use
required: false
default: "3.9"
Expand Down

0 comments on commit 8231b9f

Please sign in to comment.