Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
98085015
Commit
98085015
authored
May 22, 2024
by
Michael Yang
Browse files
only generate on relevant changes
parent
e91d0ef7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
.github/workflows/test.yaml
.github/workflows/test.yaml
+4
-4
No files found.
.github/workflows/test.yaml
View file @
98085015
...
...
@@ -34,13 +34,13 @@ jobs:
git diff-tree -r --no-commit-id --name-only \
$(git merge-base ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }}) \
${{ github.event.pull_request.head.sha }} \
| xargs python3 -c "import sys;
print(any([x.startswith('$1') for x in sys.argv[1:]]
))"
| xargs python3 -c "import sys;
from pathlib import Path; print(any(Path(x).match(glob) for x in sys.argv[1:] for glob in '$*'.split(' ')
))"
}
{
echo GENERATE=$(changed llm/)
echo GENERATE_CUDA=$(changed llm/)
echo GENERATE_ROCM=$(changed llm/)
echo GENERATE=$(changed
'
llm/
llama.cpp' 'llm/patches/**' 'llm/ext_server/**' 'llm/generate/**'
)
echo GENERATE_CUDA=$(changed
'
llm/
llama.cpp' 'llm/patches/**' 'llm/ext_server/**' 'llm/generate/**'
)
echo GENERATE_ROCM=$(changed
'
llm/
llama.cpp' 'llm/patches/**' 'llm/ext_server/**' 'llm/generate/**'
)
} >>$GITHUB_OUTPUT
generate
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment