12345678910111213141516171819202122232425262728293031 |
- name: Collect-analytics-fast-run
- on:
- schedule:
- - cron: "*/5 * * * *" # Every 5 min
- workflow_dispatch:
- inputs:
- commit_sha:
- type: string
- default: ""
-
- defaults:
- run:
- shell: bash
- jobs:
- main:
- name: Checkout and setup
- runs-on: [ self-hosted ]
- steps:
- - name: Checkout
- uses: actions/checkout@v4
- with:
- ref: ${{ inputs.commit_sha }}
- - name: Setup ydb access
- uses: ./.github/actions/setup_ci_ydb_service_account_key_file_credentials
- with:
- ci_ydb_service_account_key_file_credentials: ${{ secrets.CI_YDB_SERVICE_ACCOUNT_KEY_FILE_CREDENTIALS }}
- - name: Install dependencies
- run: |
- python3 -m pip install ydb ydb[yc] codeowners pandas
- - name: Upload new test history to fast table
- run: python3 .github/scripts/analytics/test_history_fast.py
|