Skip to content

Commit 8dc9fd6

Browse files
authored
feat(ci): use @next branch from llama-stack-client (#3576)
When we update Stainless (editor changes), the `next` branch gets updated. Eventually when one decides on a release, you land changes into `main`. This is the Stainless workflow. This PR makes sure we follow that workflow by pulling from the `next` branch for our integration tests.
1 parent 65f7b81 commit 8dc9fd6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/setup-runner/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ runs:
2929
3030
# Install llama-stack-client-python based on the client-version input
3131
if [ "${{ inputs.client-version }}" = "latest" ]; then
32-
echo "Installing latest llama-stack-client-python from main branch"
33-
uv pip install git+https://github.com/llamastack/llama-stack-client-python.git@main
32+
echo "Installing latest llama-stack-client-python from next branch"
33+
uv pip install git+https://github.com/llamastack/llama-stack-client-python.git@next
3434
elif [ "${{ inputs.client-version }}" = "published" ]; then
3535
echo "Installing published llama-stack-client-python from PyPI"
3636
uv pip install llama-stack-client

.github/actions/setup-test-environment/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ runs:
4444
run: |
4545
# Install llama-stack-client-python based on the client-version input
4646
if [ "${{ inputs.client-version }}" = "latest" ]; then
47-
echo "Installing latest llama-stack-client-python from main branch"
48-
export LLAMA_STACK_CLIENT_DIR=git+https://github.com/llamastack/llama-stack-client-python.git@main
47+
echo "Installing latest llama-stack-client-python from next branch"
48+
export LLAMA_STACK_CLIENT_DIR=git+https://github.com/llamastack/llama-stack-client-python.git@next
4949
elif [ "${{ inputs.client-version }}" = "published" ]; then
5050
echo "Installing published llama-stack-client-python from PyPI"
5151
unset LLAMA_STACK_CLIENT_DIR

0 commit comments

Comments
 (0)