diff options
author | Kirill Rysin <35688753+naspirato@users.noreply.github.com> | 2024-10-30 11:34:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 10:34:23 +0000 |
commit | cf9e82043e995b1abdbf3ec34393774ed949e1b9 (patch) | |
tree | 08cebeb652233bbe58884aa4e8b1937c3bb2724f | |
parent | 39435d7b60108b2cc00dd20f1dcdcdb1b7b2f08c (diff) | |
download | ydb-cf9e82043e995b1abdbf3ec34393774ed949e1b9.tar.gz |
Changing order of steps in collect_analytics.yml (#11097)
-rw-r--r-- | .github/workflows/collect_analytics.yml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.github/workflows/collect_analytics.yml b/.github/workflows/collect_analytics.yml index 61a23b666b..3e92d0feb6 100644 --- a/.github/workflows/collect_analytics.yml +++ b/.github/workflows/collect_analytics.yml @@ -33,17 +33,21 @@ jobs: run: python3 .github/scripts/analytics/flaky_tests_history.py --days-window=1 - name: Collect test history data with window 1 days release-asan for main run: python3 .github/scripts/analytics/flaky_tests_history.py --days-window=1 --build_type=release-asan + - name: Collect all muted and not muted tests + run: python3 .github/scripts/tests/get_muted_tests.py upload_muted_tests --branch main + - name: Collect all test monitor (how long tests in state) + run: python3 .github/scripts/analytics/tests_monitor.py --branch main - name: Collect test history data with window 10 run relwithdebinfo for main + continue-on-error: true run: python3 .github/scripts/analytics/flaky_tests_history_n_runs.py --runs=10 - name: Collect test history data with window 10 run release-asan for main + continue-on-error: true run: python3 .github/scripts/analytics/flaky_tests_history_n_runs.py --runs=10 --build_type=release-asan - name: Collect test history data with window 50 run relwithdebinfo for main + continue-on-error: true run: python3 .github/scripts/analytics/flaky_tests_history_n_runs.py --runs=50 - name: Collect test history data with window 50 run release-asan for main run: python3 .github/scripts/analytics/flaky_tests_history_n_runs.py --runs=50 --build_type=release-asan - - name: Collect all muted and not muted tests - run: python3 .github/scripts/tests/get_muted_tests.py upload_muted_tests --branch main - - name: Collect all test monitor (how long tests in state) - run: python3 .github/scripts/analytics/tests_monitor.py --branch main + |