perf_ycsb_hash #5424
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: perf_ycsb_hash | |
on: | |
push: | |
tags: | |
- '*' | |
workflow_dispatch: | |
schedule: | |
- cron: '0 */3 * * *' | |
jobs: | |
perf_ycsb_hash: | |
if: github.repository == 'tarantool/tarantool' | |
runs-on: perf-sh2 | |
steps: | |
- name: set PATH to GIT of the newer version 2.9.0 | |
run: echo "/usr/local/git/bin" | tee -a $GITHUB_PATH | |
- name: cleanup workspace | |
run: docker run -w /source -v ${PWD}:/source -i centos:8 /bin/bash -c "chown -R $(id -u):$(id -g) * .[^.]*" | |
- uses: actions/checkout@v4 | |
- name: test | |
env: | |
BENCH: 'ycsb' | |
ARG: 'hash' | |
uses: ./.github/actions/perf | |
- name: call action to send Telegram message on failure | |
env: | |
TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_CORE_TOKEN }} | |
TELEGRAM_TO: ${{ secrets.TELEGRAM_CORE_TO }} | |
uses: ./.github/actions/send-telegram-notify | |
if: failure() | |
- name: artifacts | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: perf_ycsb_hash | |
retention-days: 21 | |
path: | | |
*_result.txt | |
*_t_version.txt |