From 3b80549e15d9803d16863d2f97d9fd7250003f2c Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 27 Oct 2025 11:37:49 -0700 Subject: [PATCH] fix(ci): correct remaining path filters and Docker build args Fixed path filters that still referenced the old llama_stack/ location: - Updated negative path exclusions from !llama_stack/ui/** to !src/llama_stack/ui/** - Updated Docker RUN_CONFIG_PATH build args to use /workspace/src/llama_stack/distributions/ These paths were missed in the initial src/ migration commit. --- .github/workflows/integration-auth-tests.yml | 2 +- .github/workflows/integration-tests.yml | 2 +- .github/workflows/integration-vector-io-tests.yml | 2 +- .github/workflows/providers-build.yml | 4 ++-- .github/workflows/test-external.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/integration-auth-tests.yml b/.github/workflows/integration-auth-tests.yml index a7917e824..2de3fe9df 100644 --- a/.github/workflows/integration-auth-tests.yml +++ b/.github/workflows/integration-auth-tests.yml @@ -10,7 +10,7 @@ on: paths: - 'distributions/**' - 'src/llama_stack/**' - - '!llama_stack/ui/**' + - '!src/llama_stack/ui/**' - 'tests/integration/**' - 'uv.lock' - 'pyproject.toml' diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 36a75cbe4..2b8965aad 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -10,7 +10,7 @@ on: types: [opened, synchronize, reopened] paths: - 'src/llama_stack/**' - - '!llama_stack/ui/**' + - '!src/llama_stack/ui/**' - 'tests/**' - 'uv.lock' - 'pyproject.toml' diff --git a/.github/workflows/integration-vector-io-tests.yml b/.github/workflows/integration-vector-io-tests.yml index 9a0f82058..0b4e174bc 100644 --- a/.github/workflows/integration-vector-io-tests.yml +++ b/.github/workflows/integration-vector-io-tests.yml @@ -9,7 +9,7 @@ on: branches: [ main ] paths: - 'src/llama_stack/**' - - '!llama_stack/ui/**' + - '!src/llama_stack/ui/**' - 'tests/integration/vector_io/**' - 'uv.lock' - 'pyproject.toml' diff --git a/.github/workflows/providers-build.yml b/.github/workflows/providers-build.yml index f116a0a52..2b2ca6330 100644 --- a/.github/workflows/providers-build.yml +++ b/.github/workflows/providers-build.yml @@ -113,7 +113,7 @@ jobs: --build-arg INSTALL_MODE=editable \ --build-arg DISTRO_NAME=ci-tests \ --build-arg BASE_IMAGE="$BASE_IMAGE" \ - --build-arg RUN_CONFIG_PATH=/workspace/llama_stack/distributions/ci-tests/run.yaml \ + --build-arg RUN_CONFIG_PATH=/workspace/src/llama_stack/distributions/ci-tests/run.yaml \ -t llama-stack:ci-tests - name: Inspect the container image entrypoint @@ -153,7 +153,7 @@ jobs: --build-arg INSTALL_MODE=editable \ --build-arg DISTRO_NAME=ci-tests \ --build-arg BASE_IMAGE="$BASE_IMAGE" \ - --build-arg RUN_CONFIG_PATH=/workspace/llama_stack/distributions/ci-tests/run.yaml \ + --build-arg RUN_CONFIG_PATH=/workspace/src/llama_stack/distributions/ci-tests/run.yaml \ -t llama-stack:ci-tests-ubi9 - name: Inspect UBI9 image diff --git a/.github/workflows/test-external.yml b/.github/workflows/test-external.yml index b31e6ac55..d1d88c688 100644 --- a/.github/workflows/test-external.yml +++ b/.github/workflows/test-external.yml @@ -9,7 +9,7 @@ on: branches: [ main ] paths: - 'src/llama_stack/**' - - '!llama_stack/ui/**' + - '!src/llama_stack/ui/**' - 'tests/integration/**' - 'uv.lock' - 'pyproject.toml' diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 61c11b0be..182643721 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -9,7 +9,7 @@ on: branches: [ main ] paths: - 'src/llama_stack/**' - - '!llama_stack/ui/**' + - '!src/llama_stack/ui/**' - 'tests/unit/**' - 'uv.lock' - 'pyproject.toml'