Skip to content

Commit f06dc9f

Browse files
authored
fix ci (#46)
1 parent 4e12145 commit f06dc9f

1 file changed

Lines changed: 16 additions & 18 deletions

File tree

.github/workflows/run_spicebench.yml

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,46 +5,46 @@ on:
55
workflow_dispatch:
66
inputs:
77
scenario:
8-
description: 'Scenario/query set to run (e.g. tpch)'
8+
description: "Scenario/query set to run (e.g. tpch)"
99
required: true
10-
default: 'tpch'
10+
default: "tpch"
1111
type: string
1212
run_data_generation:
13-
description: 'Run data-generation before spicebench'
13+
description: "Run data-generation before spicebench"
1414
required: false
1515
default: false
1616
type: boolean
1717
data_generation_runner_type:
18-
description: 'Runner label for data-generation job'
18+
description: "Runner label for data-generation job"
1919
required: false
20-
default: 'ubuntu-latest'
20+
default: "ubuntu-latest"
2121
type: string
2222
data_generation_scale_factor:
23-
description: 'Data-generation scale factor'
23+
description: "Data-generation scale factor"
2424
required: false
25-
default: '1.0'
25+
default: "1.0"
2626
type: string
2727
data_generation_bucket:
28-
description: 'S3 bucket for generated data (required if run_data_generation=true)'
28+
description: "S3 bucket for generated data (required if run_data_generation=true)"
2929
required: false
3030
type: string
3131
data_generation_prefix:
32-
description: 'Base S3 prefix for generated data (scenario appended automatically)'
32+
description: "Base S3 prefix for generated data (scenario appended automatically)"
3333
required: false
34-
default: 'data-gen'
34+
default: "data-gen"
3535
type: string
3636
data_generation_max_concurrency:
37-
description: 'Data-generation max concurrent S3 writes'
37+
description: "Data-generation max concurrent S3 writes"
3838
required: false
39-
default: '8'
39+
default: "8"
4040
type: string
4141
data_generation_region:
42-
description: 'AWS region for data-generation'
42+
description: "AWS region for data-generation"
4343
required: false
44-
default: 'us-east-1'
44+
default: "us-east-1"
4545
type: string
4646
data_generation_skip_initial:
47-
description: 'Skip data-generation initial ingest'
47+
description: "Skip data-generation initial ingest"
4848
required: false
4949
default: false
5050
type: boolean
@@ -96,17 +96,15 @@ jobs:
9696
curl -LsSf https://dbc.columnar.tech/install.sh | sh
9797
dbc install flightsql
9898
99-
10099
- name: Run spicebench
101100
env:
102101
SPICEAI_API_KEY: ${{ env.SPICEAI_API_KEY }}
103102
SPICE_CLOUD_API_URL: https://dev-api.spice.ai
104103
SPICEAI_BENCHMARK_METRICS_KEY: ${{ secrets.SPICEAI_BENCHMARK_METRICS_KEY }}
105-
RUSTFLAGS: '-A warnings'
106104
SCENARIO: ${{ github.event.inputs.scenario || 'tpch' }}
107105
run: |
108106
~/.spice/bin/spicebench \
109107
--concurrency 2 \
110-
--query-set "${SCENARIO}" \
108+
--scenario "${SCENARIO}" \
111109
--system-adapter-stdio-cmd docker \
112110
--system-adapter-stdio-args "run -i -e SPICEAI_API_KEY -e SPICE_CLOUD_API_URL ghcr.io/spiceai/spidapter:latest stdio --verbose"

0 commit comments

Comments
 (0)