action.yml 606 B

1234567891011121314151617
  1. name: post-benchmarks
  2. runs:
  3. using: composite
  4. steps:
  5. - name: Upload Benchmark Results artifact
  6. uses: actions/upload-artifact@v4.0.0
  7. with:
  8. name: benchmark-results
  9. path: "${{ runner.temp }}/benchmark-results/**"
  10. if-no-files-found: error
  11. - name: Send benchmark report to visualisation
  12. run: |-
  13. set +e
  14. set +o pipefail
  15. ./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
  16. true
  17. shell: bash