Skip to content
Open
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
4 changes: 4 additions & 0 deletions .github/workflows/ut.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:
if: ${{ always() }}
run: |
docker rm -f vllm-xpu-kernel-ci || true
docker image rm -f vllm-xpu-kernel-ci || true;
docker system prune -f || true;
Copy link

Copilot AI Dec 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the trailing semicolons on these lines. In shell scripts, semicolons are statement terminators and are unnecessary at the end of a line. The other commands in this workflow (e.g., line 40 and 74) do not use trailing semicolons, making these inconsistent with the existing style.

Suggested change
docker system prune -f || true;
docker system prune -f || true

Copilot uses AI. Check for mistakes.

run-unit-tests-bmg:
runs-on: self-hosted-bmg
Expand Down Expand Up @@ -70,3 +72,5 @@ jobs:
if: ${{ always() }}
run: |
docker rm -f vllm-xpu-kernel-ci || true
docker image rm -f vllm-xpu-kernel-ci || true;
docker system prune -f || true;
Copy link

Copilot AI Dec 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the trailing semicolons on these lines. In shell scripts, semicolons are statement terminators and are unnecessary at the end of a line. The other commands in this workflow (e.g., line 40 and 74) do not use trailing semicolons, making these inconsistent with the existing style.

Suggested change
docker system prune -f || true;
docker system prune -f || true

Copilot uses AI. Check for mistakes.