-
Couldn't load subscription status.
- Fork 118
[CI] Add support for windows to dispatch_job.py #540
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] Add support for windows to dispatch_job.py #540
Conversation
Created using spr 1.3.6 [skip ci]
Created using spr 1.3.6
This patch adds in windows functionality to dispatch_job.py. Some minor refactoring was done around the start_build function so that the core functionality can be reused between Linux and Windows. Pull Request: llvm#540
Created using spr 1.3.6 [skip ci]
This patch adds in windows functionality to dispatch_job.py. Some minor refactoring was done around the start_build function so that the core functionality can be reused between Linux and Windows. Pull Request: llvm#540
|
|
||
|
|
||
| def start_build_linux(commit_sha: str, k8s_client) -> str: | ||
| pod_name = f"build-{commit_sha}" |
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.
Function comments?
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.
Added. I kept them as one liners as these functions should be reasonably self documenting.
|
|
||
|
|
||
| def start_build_windows(commit_sha: str, k8s_client): | ||
| pod_name = f"build-{commit_sha}" |
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.
Function comments?
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.
Same as above.
Created using spr 1.3.6 [skip ci]
Created using spr 1.3.6 [skip ci]
This patch adds in windows functionality to dispatch_job.py. Some minor refactoring was done around the start_build function so that the core functionality can be reused between Linux and Windows. Pull Request: llvm#540
This patch adds in windows functionality to dispatch_job.py. Some minor refactoring was done around the start_build function so that the core functionality can be reused between Linux and Windows. Pull Request: llvm#540
Created using spr 1.3.6 [skip ci]
Created using spr 1.3.6 [skip ci]
This patch adds in windows functionality to dispatch_job.py. Some minor refactoring was done around the start_build function so that the core functionality can be reused between Linux and Windows. Reviewers: cmtice, gburgessiv, lnihlen, dschuff, Keenuts Reviewed By: cmtice Pull Request: llvm#540
This patch adds in windows functionality to dispatch_job.py. Some minor
refactoring was done around the start_build function so that the core
functionality can be reused between Linux and Windows.