Skip to content

Commit

Permalink
Add separate job for nightly flakeguard workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl committed Dec 3, 2024
1 parent 86d5f99 commit a49e362
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/flakeguard-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Flakeguard Nightly

on:
schedule:
# Run every night at 3:00 AM UTC
- cron: '0 3 * * *'
workflow_dispatch:

jobs:
trigger-flaky-test-detection:
name: Find Flaky Tests
uses: ./.github/workflows/flakeguard.yml
with:
repoUrl: 'https://github.com/smartcontractkit/chainlink'
baseRef: 'origin/develop'
projectPath: '.'
maxPassRatio: '1.0'
runAllTests: 'true'
extraArgs: '{ "skipped_tests": "TestChainComponents", "test_repeat_count": "5", "all_tests_runner": "ubuntu22.04-32cores-128GB", "all_tests_runner_count": "3", "run_with_race": "false" }'
secrets:
SLACK_BOT_TOKEN: ${{ secrets.QA_SLACK_API_KEY }}
3 changes: 0 additions & 3 deletions .github/workflows/flakeguard-on-demand.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Flakeguard On Demand

on:
schedule:
# Run every night at 3:00 AM UTC
- cron: '0 3 * * *'
workflow_dispatch:
inputs:
repoUrl:
Expand Down

0 comments on commit a49e362

Please sign in to comment.