Skip to content

Commit

Permalink
chore: de-stutter in smoke jobs
Browse files Browse the repository at this point in the history
Rename smoke test jobs to remove stutter; e.g. `smoke/smoke-<model>` ->
`smoke/<model>`.

Signed-off-by: Nick Hale <[email protected]>
  • Loading branch information
njhale committed Jun 21, 2024
1 parent a92428e commit 5a43272
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/smoke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
echo "run_smoke_tests=false" >> $GITHUB_OUTPUT
smoke-gpt-4o-2024-05-13:
gpt-4o-2024-05-13:
needs: check-label
if: ${{ needs.check-label.outputs.run_smoke_tests == 'true' }}
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
export PATH="$(pwd)/bin:${PATH}"
make smoke
smoke-gpt-4-turbo-2024-04-09:
gpt-4-turbo-2024-04-09:
needs: check-label
if: ${{ needs.check-label.outputs.run_smoke_tests == 'true' }}
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
export PATH="$(pwd)/bin:${PATH}"
make smoke
smoke-claude-3-opus-20240229:
claude-3-opus-20240229:
needs: check-label
if: ${{ needs.check-label.outputs.run_smoke_tests == 'true' }}
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
export PATH="$(pwd)/bin:${PATH}"
make smoke
smoke-mistral-large-2402:
mistral-large-2402:
needs: check-label
if: ${{ needs.check-label.outputs.run_smoke_tests == 'true' }}
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 5a43272

Please sign in to comment.