Skip to content

Commit

Permalink
.github: Fix realtime param on Weekly and Nightly tests and...
Browse files Browse the repository at this point in the history
Rename the "Cleanup" job in the cherry-pick and recheck jobs
to "Summary".
  • Loading branch information
gtjoseph committed Sep 23, 2024
1 parent e93008f commit bd3bf02
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/NightlyTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ on:
required: false
type: string
description: "Array of test groups to run: ['ari1','channels']. Defaults to NIGHTLYTEST_LIST"
realtime:
type: boolean
required: false
default: false

schedule:
# Monday-Saturday 2am
Expand All @@ -26,6 +22,6 @@ jobs:
with:
branches: ${{ inputs.branches || vars.NIGHTLYTEST_BRANCHES }}
group_list: ${{ inputs.group_list || vars.NIGHTLYTEST_LIST }}
realtime: ${{ inputs.realtime }}
realtime: false
secrets:
TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/OnPRCherryPickTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
secrets:
TOKEN: ${{ secrets.GITHUB_TOKEN }}

Cleanup:
Summary:
if: ${{ success() || failure() }}
runs-on: ubuntu-latest
needs: [Setup,Check]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/OnPRRecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
secrets:
TOKEN: ${{ secrets.GITHUB_TOKEN }}

Cleanup:
Summary:
if: ${{ success() || failure() }}
runs-on: ubuntu-latest
needs: [Setup,ReCheck]
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/WeeklyTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ on:
required: false
type: string
description: "Array of test groups to run: ['ari1','channels']. Defaults to NIGHTLYTEST_LIST"
realtime:
type: boolean
required: false
default: true

schedule:
# Sunday 2am
Expand All @@ -26,6 +22,6 @@ jobs:
with:
branches: ${{ inputs.branches || vars.NIGHTLYTEST_BRANCHES }}
group_list: ${{ inputs.group_list || vars.NIGHTLYTEST_LIST }}
realtime: ${{ inputs.realtime }}
realtime: true
secrets:
TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit bd3bf02

Please sign in to comment.