-
Notifications
You must be signed in to change notification settings - Fork 33
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
[CI]Split XPU distributed UT into another job #1371
base: main
Are you sure you want to change the base?
Conversation
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.
The split means, we add 2 jobs in ./.github/workflows/_linux_ut.yml
one for non-distributed ut test(already exist), another for distributed UT
.github/workflows/pull.yml
Outdated
@@ -233,6 +221,31 @@ jobs: | |||
ut: op_extended | |||
runner: linux.idc.xpu | |||
|
|||
preci-linux-build-distributed: |
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 this job, we don't need 2 builds
e191aaf
to
cc2b42b
Compare
Please add |
332ce7b
to
a426c25
Compare
.github/workflows/_linux_ut.yml
Outdated
path: ${{ github.workspace }}/ut_log | ||
|
||
distributed_ut_test: | ||
runs-on: ${{ inputs.runner }} |
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.
let's hardcode the distributed runner as pvc_e2e
.github/workflows/_linux_ut.yml
Outdated
@@ -49,6 +49,7 @@ permissions: read-all | |||
jobs: | |||
ut_test: | |||
runs-on: ${{ inputs.runner }} | |||
if: contains(inputs.ut, 'xpu_distributed') == false |
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.
if: contains(inputs.ut, 'xpu_distributed') == false | |
if: ${{ inputs.ut != 'xpu_distributed' }} |
add |
1eda649
to
80b8447
Compare
No description provided.