mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-28 05:43:50 +00:00
5a26f392ca
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/12169 Reviewed By: pdillinger Differential Revision: D52715225 Pulled By: ajkr fbshipit-source-id: 28476d363034fa1bb9c8c919d577c03b6391451b
18 lines
606 B
YAML
18 lines
606 B
YAML
name: post-benchmarks
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Upload Benchmark Results artifact
|
|
uses: actions/upload-artifact@v4.0.0
|
|
with:
|
|
name: benchmark-results
|
|
path: "${{ runner.temp }}/benchmark-results/**"
|
|
if-no-files-found: error
|
|
- name: Send benchmark report to visualisation
|
|
run: |-
|
|
set +e
|
|
set +o pipefail
|
|
./build_tools/benchmark_log_tool.py --tsvfile ${{ runner.temp }}/benchmark-results/report.tsv --esdocument https://search-rocksdb-bench-k2izhptfeap2hjfxteolsgsynm.us-west-2.es.amazonaws.com/bench_test3_rix/_doc
|
|
true
|
|
shell: bash
|