Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/_comps-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ jobs:
pull-requests: read
repository-projects: read
security-events: read
artifact-metadata: read
statuses: read
uses: ./.github/workflows/_run-docker-compose.yml
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/manual-comps-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jobs:
security-events: read
statuses: read
models: read
artifact-metadata: read
strategy:
matrix:
service: ${{ fromJson(needs.get-test-matrix.outputs.services) }}
Expand Down
2 changes: 1 addition & 1 deletion comps/llms/src/text-generation/Dockerfile.intel_hpu
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ COPY comps /home/user/comps
ARG uvpip='uv pip install --system --no-cache-dir'
RUN pip install --no-cache-dir --upgrade pip setuptools uv && \
pip install --no-cache-dir optimum-habana==1.18.1 && \
pip install --no-cache-dir git+https://github.com/HabanaAI/[email protected]
pip install --no-cache-dir --no-build-isolation git+https://github.com/HabanaAI/[email protected]

RUN git clone ${REPO} --depth 1 --branch ${REPO_VER} /home/user/optimum-habana && rm -rf /home/user/optimum-habana/.git

Expand Down
2 changes: 1 addition & 1 deletion comps/llms/src/text-generation/Dockerfile.intel_hpu_phi4
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ COPY comps /home/user/comps
ARG uvpip='uv pip install --system --no-cache-dir'
RUN pip install --no-cache-dir --upgrade pip setuptools uv && \
pip install --no-cache-dir optimum-habana==1.18.0 && \
pip install --no-cache-dir git+https://github.com/HabanaAI/[email protected]
pip install --no-cache-dir --no-build-isolation git+https://github.com/HabanaAI/[email protected]

WORKDIR /home/user/comps/llms/src/text-generation
RUN $uvpip -r requirements.txt && \
Expand Down
Loading