summaryrefslogtreecommitdiff
path: root/.github/actions/post-benchmarks/action.yml
blob: 46d47ae2235ea939eabd00f2d33efbd5b5b8863f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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