Closed
Bug 1145510
Opened 10 years ago
Closed 7 years ago
add new ec2 windows builders to buildbot-configs
Categories
(Infrastructure & Operations Graveyard :: CIDuty, task)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: jlund, Assigned: jlund)
References
Details
Attachments
(1 file)
839 bytes,
patch
|
coop
:
review+
jlund
:
checked-in+
|
Details | Diff | Splinter Review |
they should be patched in a similar way to the following except within production_config.py and extend TRY_SLAVES not SLAVES
--- a/mozilla/staging_config.py Thu Mar 12 11:28:39 2015 -0600
+++ b/mozilla/staging_config.py Thu Mar 19 22:36:29 2015 -0700
@@ -5,12 +5,15 @@
SLAVES = deepcopy(pc.SLAVES)
TRY_SLAVES = deepcopy(pc.TRY_SLAVES)
-# Add a small stockpile of AWS dev instances.
+# Add a small stockpile of AWS linux64 dev instances.
LINUX64_EC2_DEV = ['dev-linux64-ec2-%03d' % x for x in range(1, 50)]
SLAVES['mock'].extend(LINUX64_EC2_DEV)
TRY_SLAVES['mock'].extend(LINUX64_EC2_DEV)
+# Add a small stockpile of AWS win64 dev instances.
+WIN64_EC2_DEV = ['b-2008-ec2-%04d' % x for x in range(1,6)]
WIN64_RELOPS = ['ix-mn-w0864-%03d' % x for x in range(1,3)]
+SLAVES['win64-rev2'].extend(WIN64_EC2_DEV)
SLAVES['win64-rev2'].extend(WIN64_RELOPS)
TRY_SLAVES['win64-rev2'].extend(WIN64_RELOPS)
Assignee | ||
Comment 1•10 years ago
|
||
tested on my dev master (staging + try branch setup is hard :) should do the trick.
I can reconfig this at some point tomorrow and unblock Q
Attachment #8582231 -
Flags: review?(coop)
Assignee | ||
Comment 2•10 years ago
|
||
(In reply to Jordan Lund (:jlund) from comment #1)
> Created attachment 8582231 [details] [diff] [review]
> 150323_bug_1145510_ec2_windows-bbot-cfgs.patch
>
I'm not sure how you feel about extending the 'rev2' part. We may want to revisit this and give ec2 windows their own var or else adjust the win64-rev2 name to reflect the combination of them both. However, since we only need 5 slaves on try for now, I didn't address this.
Updated•10 years ago
|
Attachment #8582231 -
Flags: review?(coop) → review+
Assignee | ||
Comment 3•10 years ago
|
||
Comment on attachment 8582231 [details] [diff] [review]
150323_bug_1145510_ec2_windows-bbot-cfgs.patch
thanks, on default:
remote: https://hg.mozilla.org/build/buildbot-configs/rev/fe36afcc3303
Attachment #8582231 -
Flags: checked-in+
Comment 4•10 years ago
|
||
Comment 5•7 years ago
|
||
Found in triaging: pretty sure this is done now or no longer needed.
Please feel free to reopen if I'm wrong.
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → FIXED
Updated•7 years ago
|
Component: Platform Support → Buildduty
Product: Release Engineering → Infrastructure & Operations
Updated•5 years ago
|
Product: Infrastructure & Operations → Infrastructure & Operations Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•