Skip to content

Commit

Permalink
Nightly action partial match job-name (#92)
Browse files Browse the repository at this point in the history
We need to partial match the job-name because GH truncates this string
with an ellipse:

    tests (n150, run2, MobileNetV2, clip, flan_t5, mlpmixer, resnet, vilt, albert, codegen, glpn_kitt...

The fix is just to partial match i.e.:

    tests (n150, run2,
  • Loading branch information
nsmithtt authored Dec 4, 2024
1 parent 7ecd896 commit 34e925e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-model-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
id: strings
shell: bash
env:
job-name: "${{ github.job }} (${{ matrix.build.runs-on }}, ${{ matrix.build.name }}, ${{ matrix.build.test_names }})"
job-name: "${{ github.job }} (${{ matrix.build.runs-on }}, ${{ matrix.build.name }}"
run: |
echo "work-dir=$(pwd)" >> "$GITHUB_OUTPUT"
echo "build-output-dir=$(pwd)/build" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 34e925e

Please sign in to comment.