chore(ci): change benchmark parser input name

The use of "schema" was incorrect since it's meant to be used as
database name when sending data to Slab.
This commit is contained in:
David Testé
2022-11-23 13:26:02 +01:00
committed by David Testé
parent 7f65f4f527
commit 1e8c0df381
3 changed files with 5 additions and 5 deletions

View File

@@ -130,7 +130,7 @@ jobs:
COMMIT_DATE="$(git --no-pager show -s --format=%cd --date=iso8601-strict ${{ github.sha }})"
COMMIT_HASH="$(git describe --tags --dirty)"
python3 ./ci/benchmark_parser.py compiler/benchmarks_results.json ${{ env.RESULTS_FILENAME }} \
--schema compiler_benchmarks \
--database compiler_benchmarks \
--hardware ${{ env.EC2_INSTANCE_TYPE }} \
--project-version ${COMMIT_HASH} \
--branch ${{ github.ref_name }} \

View File

@@ -100,7 +100,7 @@ jobs:
COMMIT_DATE="$(git --no-pager show -s --format=%cd --date=iso8601-strict ${{ github.sha }})"
COMMIT_HASH="$(git describe --tags --dirty)"
python3 ./ci/benchmark_parser.py compiler/benchmarks_results.json ${{ env.RESULTS_FILENAME }} \
--schema compiler_benchmarks \
--database compiler_benchmarks \
--hardware ${{ inputs.instance_type }} \
--project-version ${COMMIT_HASH} \
--branch ${{ github.ref_name }} \