Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/evals-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
if: "github.repository == 'google-gemini/gemini-cli'"
strategy:
fail-fast: false
max-parallel: 10
matrix:
model:
- 'gemini-3.1-pro-preview-customtools'
Expand All @@ -34,7 +35,7 @@ jobs:
- 'gemini-2.5-pro'
- 'gemini-2.5-flash'
- 'gemini-2.5-flash-lite'
run_attempt: [1, 2, 3]
run_attempt: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
steps:
- name: 'Checkout'
uses: 'actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8' # ratchet:actions/checkout@v5
Expand Down Expand Up @@ -63,6 +64,11 @@ jobs:
TEST_NAME_PATTERN: '${{ github.event.inputs.test_name_pattern }}'
VITEST_RETRY: 0
run: |
# Add jitter to prevent all jobs from hitting API simultaneously
SLEEP_TIME=$((RANDOM % 60))
echo "Jitter: Sleeping for $SLEEP_TIME seconds..."
sleep $SLEEP_TIME

CMD="npm run test:all_evals"
PATTERN="${TEST_NAME_PATTERN}"

Expand Down
Loading