fix(ci): correct transformer backend path typo#8712
Merged
Conversation
✅ Deploy Preview for localai ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
43d660b to
99f9937
Compare
Collaborator
Author
|
Pushed updates to ensure the branch is clean. Returning to IN_REVIEW. |
mudler
reviewed
Mar 2, 2026
| run: | | ||
| make backends/transformers backends/huggingface backends/llama-cpp backends/local-store backends/silero-vad backends/piper backends/whisper backends/stablediffusion-ggml | ||
| make backends/transformers | ||
| mv backends/transformers external/transformers |
Owner
There was a problem hiding this comment.
Suggested change
| mv backends/transformers external/transformers | |
| mkdir external && mv backends/transformers external/transformers |
- Fix typo: 'transformer' -> 'transformers' in .github/workflows/test.yml - The original PR mudler#8710 had a typo where 'transformers' was written as 'transformer' - This caused the build to fail as the directory is actually named 'transformers' - References: mudler#8710
962288a to
1049b7d
Compare
Collaborator
Author
|
Pushed updates based on feedback/CI. Returning to IN_REVIEW. |
mudler
reviewed
Mar 2, 2026
Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
localai-bot
added a commit
to localai-bot/LocalAI
that referenced
this pull request
Mar 6, 2026
* fix(ci): correct transformer backend path typo - Fix typo: 'transformer' -> 'transformers' in .github/workflows/test.yml - The original PR mudler#8710 had a typo where 'transformers' was written as 'transformer' - This caused the build to fail as the directory is actually named 'transformers' - References: mudler#8710 * Apply suggestion from @mudler Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com> --------- Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com> Co-authored-by: localai-bot <localai-bot@users.noreply.github.com> Co-authored-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
localai-bot
added a commit
to localai-bot/LocalAI
that referenced
this pull request
Mar 6, 2026
* fix(ci): correct transformer backend path typo - Fix typo: 'transformer' -> 'transformers' in .github/workflows/test.yml - The original PR mudler#8710 had a typo where 'transformers' was written as 'transformer' - This caused the build to fail as the directory is actually named 'transformers' - References: mudler#8710 * Apply suggestion from @mudler Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com> --------- Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com> Co-authored-by: localai-bot <localai-bot@users.noreply.github.com> Co-authored-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
localai-bot
added a commit
to localai-bot/LocalAI
that referenced
this pull request
Mar 25, 2026
* fix(ci): correct transformer backend path typo - Fix typo: 'transformer' -> 'transformers' in .github/workflows/test.yml - The original PR mudler#8710 had a typo where 'transformers' was written as 'transformer' - This caused the build to fail as the directory is actually named 'transformers' - References: mudler#8710 * Apply suggestion from @mudler Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com> --------- Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com> Co-authored-by: localai-bot <localai-bot@users.noreply.github.com> Co-authored-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes a typo in PR #8710 where transformers was incorrectly written as transformer in the CI workflow.
Changes:
Original PR: #8710
Commit: 2aaddbb
The original commit moved backends/transformer (singular) instead of backends/transformers (plural), which does not exist. This PR corrects the path to use the proper plural form.