We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cf5799 commit 9890e21Copy full SHA for 9890e21
1 file changed
.github/workflows/evals-nightly.yml
@@ -64,13 +64,13 @@ jobs:
64
GEMINI_MODEL: '${{ matrix.model }}'
65
run: |
66
BASE_NAME=$(basename "${{ matrix.eval-file }}" .eval.ts)
67
- npm run test:evals -- "${{ matrix.eval-file }}" --reporter=json --outputFile="eval-results-${{ matrix.model }}-${BASE_NAME}.json"
+ npm run test:evals -- "${{ matrix.eval-file }}" --reporter=json --outputFile="eval-results-${{ matrix.model }}-${BASE_NAME}.json" || true
68
69
- name: 'Upload Results'
70
if: 'always()'
71
uses: 'actions/upload-artifact@v4' # ratchet:exclude
72
with:
73
- name: 'eval-results-${{ matrix.model }}-${{ strategy.job-index }}'
+ name: 'eval-results-${{ matrix.model }}-${{ matrix.eval-file }}'
74
path: 'eval-results-${{ matrix.model }}-*.json'
75
76
report:
0 commit comments