Skip to content

Commit

Permalink
remove build args for cpu docker image build
Browse files Browse the repository at this point in the history
Signed-off-by: Maxime Fournioux <[email protected]>
  • Loading branch information
mfournioux committed Dec 3, 2024
1 parent 7f8147e commit 5b48fee
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
uses: helm/[email protected]

- name: Build the Docker image vllm cpu
run: docker buildx build --file Dockerfile.cpu --tag vllm-cpu-env --build-arg VLLM_CPU_DISABLE_AVX512="true" .
run: docker buildx build --file Dockerfile.cpu --tag vllm-cpu-env .

- name: Configuration of docker images, network and namespace for the kind cluster
run: |
Expand All @@ -70,15 +70,6 @@ jobs:
run: |
kubectl -n ns-vllm port-forward service/test-vllm-service 8001:80 &
sleep 10
(kubectl -n ns-vllm logs -f $(kubectl -n ns-vllm get pods -o name | awk '/deployment/ {print $1;exit}')) &
curl -v --fail-with-body --show-error http://localhost:8001/v1/completions \
--header "Content-Type: application/json" \
--data '{
"model": "opt-125m",
"prompt": "San Francisco is a",
"max_tokens": 7,
"temperature": 0
}'
CODE="$(curl -v -f --location http://localhost:8001/v1/completions \
--header "Content-Type: application/json" \
--data '{
Expand Down

0 comments on commit 5b48fee

Please sign in to comment.