Skip to content
Merged
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
7 changes: 4 additions & 3 deletions .github/workflows/vllm_benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ jobs:

RUN echo "=== Aiter version BEFORE uninstall ===" && pip show aiter || true
RUN pip uninstall -y aiter
RUN pip config set global.default-timeout 60
RUN pip config set global.retries 10
RUN pip config set global.default-timeout 60 \
&& pip config set global.retries 10
RUN pip config set global.index-url https://ausartifactory.amd.com/artifactory/api/pypi/hw-cpe-prod-remote/simple
RUN pip install --upgrade "pybind11>=3.0.1"
RUN pip show pybind11

Expand All @@ -80,7 +81,7 @@ jobs:
- name: Build Docker image
run: |
IMAGE_TAG=rocm/aiter-ci:${{ env.GITHUB_COMMIT_SHA }}
docker build -t $IMAGE_TAG -f Dockerfile.mod .
docker build --network=host --no-cache -t $IMAGE_TAG -f Dockerfile.mod .

- name: Push Docker image
run: |
Expand Down
Loading