github workflow: drop measure test flakiness

Signed-off-by: zgzhang4 <zgzhang4@iflytek.com>
This commit is contained in:
zgzhang4
2024-04-29 10:53:43 +08:00
committed by Alex Zhang
parent b36d9b2156
commit 0bd0c4a21b
4 changed files with 1 additions and 88 deletions

View File

@@ -1,23 +0,0 @@
---
name: Measure Test Flakiness
on:
schedule:
- cron: "0 0 * * 0" # run every Sunday at midnight
permissions: read-all
jobs:
measure-test-flakiness:
name: Measure Test Flakiness
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -euo pipefail
./scripts/measure-test-flakiness.sh
make bin/etcd-test-analyzer
bin/etcd-test-analyzer run -token $GITHUB_TOKEN -max-age=168h -workflow Tests -branch main

View File

@@ -3,7 +3,7 @@ name: Measure TestGrid Flakiness
on:
schedule:
- cron: "0 0 * * 0" # run every Sunday at midnight
- cron: "0 0 * * *" # run every day at midnight
permissions: read-all