-
Notifications
You must be signed in to change notification settings - Fork 16
[CI] clean up docker image in ci #99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -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; | ||||||
|
|
||||||
| run-unit-tests-bmg: | ||||||
| runs-on: self-hosted-bmg | ||||||
|
|
@@ -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; | ||||||
|
||||||
| docker system prune -f || true; | |
| docker system prune -f || true |
There was a problem hiding this comment.
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.