-
Notifications
You must be signed in to change notification settings - Fork 129
Add a new clang-x64-windows-msvc-forward-slashes builder. #746
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 |
|---|---|---|
|
|
@@ -659,6 +659,17 @@ def collapseRequestsDoxygen(master, builder, req1, req2): | |
| script="clang-windows.py", | ||
| depends_on_projects=['llvm', 'clang', 'lld', 'debuginfo-tests'])}, | ||
|
|
||
| {'name' : 'clang-x64-windows-msvc-forward-slashes', | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I assume we want to start with a staging builder. Is that as simple as adding a suffix "-staging"? Or is there no way to add a staging builder, only a staging worker?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The configuration is the same between the staging and production buildmasters. There are no naming differences for the builders. It just depends upon which buildmaster you connect your worker to (staging vs production). |
||
| 'tags' : ["clang"], | ||
| 'workernames' : ['windows-gcebot2'], | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This reuses an existing worker. I assumed this was fine since the intent was to run this builder infrequently. Please tell me if this isn't the case.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Builders don't run infrequently. They run as often as possible, up to doing a run on every commit. The original suggestion in the PR was to update the configuration of one of these builders, not add a new builder (from what I understand).
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From what I can tell, there are mostly only two options for builders to reuse. The clang x64 windows builder, and the clang arm64 windows builder. We could modify an existing builder, though there'd be concerns that the builder would immediately start failing because the tests are not yet passing. How would people feel about using the clang arm64 windows builder? We appear to have two of them - a 1 stage, and a 2 stage?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You'd have to ping one of the owners of that bot. Ideally the configuration should be green before switching a buldbot over to it. |
||
| 'builddir': 'clang-x64-windows-msvc-forward-slashes', | ||
| 'factory' : AnnotatedBuilder.getAnnotatedBuildFactory( | ||
| script="clang-windows.py", | ||
| extra_args=[ | ||
| '--extra_cmake_arg=-DLLVM_WINDOWS_PREFER_FORWARD_SLASH=ON', | ||
| ], | ||
| depends_on_projects=['llvm', 'clang', 'lld', 'debuginfo-tests'])}, | ||
|
|
||
| {'name' : "clang-m68k-linux", | ||
| 'tags' : ["clang"], | ||
| 'workernames' : ["debian-akiko-m68k"], | ||
|
|
||
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 consensus in llvm/llvm-project#179865 was that this bot was important enough to run, but not important enough to spend CI resources to run as a pre-merge check.
I have no idea if this is even possible with buildbot, but my ideal scenario would be:
What would be the recommended run configuration, and where / how can we configure it?