Skip to content

Commit ceab651

Browse files
committed
[MASTER] Goodbye Carrier, hello Phoenix!
1 parent 2b8390f commit ceab651

File tree

1 file changed

+13
-28
lines changed

1 file changed

+13
-28
lines changed

master/master.cfg

Lines changed: 13 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,10 @@ if len(credentials.read("credentials.ini")) == 0:
123123
####### WORKERS
124124

125125
c['workers'] = [
126-
worker.Worker('AHK-Bot', credentials.get("workers", "AHK-Bot_passwd")),
127-
worker.Worker('Fezile', credentials.get("workers", "Fezile_passwd")),
128-
worker.Worker('Carrier', credentials.get("workers", "Carrier_passwd")),
129-
worker.Worker('Carrier-WHS-Bot', credentials.get("workers", "Carrier-WHS-Bot_passwd")),
130-
worker.Worker('Carrier-Win2003-x64', credentials.get("workers", "Carrier-Win2003-x64_passwd")),
131-
worker.Worker('Carrier-Win7', credentials.get("workers", "Carrier-Win7_passwd")),
126+
worker.Worker('Phoenix', credentials.get("workers", "Phoenix_passwd")),
127+
worker.Worker('Phoenix-WHS-Bot', credentials.get("workers", "Phoenix-WHS-Bot_passwd")),
128+
worker.Worker('Phoenix-Win2003-x64', credentials.get("workers", "Phoenix-Win2003-x64_passwd")),
129+
worker.Worker('Phoenix-Win7', credentials.get("workers", "Phoenix-Win7_passwd")),
132130
worker.Worker('Testee', credentials.get("workers", "Testee_passwd")),
133131
]
134132

@@ -348,38 +346,38 @@ c['builders'] = [
348346
util.BuilderConfig(
349347
name="Build GCCLin_x86",
350348
properties={"rosbe": "2.2-Unix", "arch": "i686"},
351-
workernames=["Carrier"],
349+
workernames=["Phoenix"],
352350
builddir="Build_GCCLin_x86",
353351
factory=Build_GCCLin_x86),
354352
util.BuilderConfig(
355353
name="Build GCCLin_x86 Release",
356354
properties={"rosbe": "2.2-Unix", "arch": "i686"},
357-
workernames=["Carrier"],
355+
workernames=["Phoenix"],
358356
builddir="Build_GCCLin_x86_Release",
359357
factory=Build_GCCLin_x86_Release),
360358
util.BuilderConfig(
361359
name="Build GCCWin_x86",
362360
properties={"rosbe": "2.2.0-Win", "arch": "i686"},
363-
workernames=["Carrier-Win7"],
361+
workernames=["Phoenix-Win7"],
364362
builddir="Build_GCCWin_x86",
365363
factory=Build_GCCWin_x86),
366364
util.BuilderConfig(
367365
name="Build MSVC_x86",
368366
properties={"rosbe": "2.2.0-Win", "arch": "i686"},
369-
workernames=["Carrier-Win7"],
367+
workernames=["Phoenix-Win7"],
370368
builddir="Build_MSVC_x86",
371369
factory=Build_MSVC_x86),
372370
util.BuilderConfig(
373371
name="Build MSVC_x64",
374372
properties={"rosbe": "2.2.0-Win", "arch": "amd64"},
375-
workernames=["Carrier-Win7"],
373+
workernames=["Phoenix-Win7"],
376374
builddir="Build_MSVC_x64",
377375
factory=Build_MSVC_x64),
378376

379-
util.BuilderConfig(name="Test KVM", workernames=["Carrier"], builddir="Test_KVM", factory=Test_KVM),
380-
util.BuilderConfig(name="Test KVM_x64", workernames=["Carrier"], builddir="Test_KVM_x64", factory=Test_KVM_x64),
381-
util.BuilderConfig(name="Test Win2003_x64", workernames=["Carrier-Win2003-x64"], builddir="Test_Win2003_x64", factory=Test_Win2003_x64),
382-
util.BuilderConfig(name="Test WHS", workernames=["Carrier-WHS-Bot"], builddir="Test_WHS", factory=Test_WHS),
377+
util.BuilderConfig(name="Test KVM", workernames=["Phoenix"], builddir="Test_KVM", factory=Test_KVM),
378+
util.BuilderConfig(name="Test KVM_x64", workernames=["Phoenix"], builddir="Test_KVM_x64", factory=Test_KVM_x64),
379+
util.BuilderConfig(name="Test Win2003_x64", workernames=["Phoenix-Win2003-x64"], builddir="Test_Win2003_x64", factory=Test_Win2003_x64),
380+
util.BuilderConfig(name="Test WHS", workernames=["Phoenix-WHS-Bot"], builddir="Test_WHS", factory=Test_WHS),
383381
util.BuilderConfig(name="Test VBox", workernames=["Testee"], builddir="Test_VBox", factory=Test_VBox),
384382
]
385383

@@ -390,19 +388,6 @@ c['builders'] = [
390388
# has a variety to choose from, like IRC bots.
391389

392390
c['services'] = [
393-
reporters.IRC(
394-
host="irc.freenode.net",
395-
port=6697,
396-
useSSL=True,
397-
nick="RosBuild",
398-
password=credentials.get("irc", "RosBuild_passwd"),
399-
channels=["#reactos", "#reactos-dev"],
400-
allowForce=False,
401-
notify_events={
402-
'exception': 1,
403-
'failure': 1
404-
}
405-
),
406391
reporters.GitHubStatusPush(
407392
token=credentials.get("github", "bbtoken")
408393
),

0 commit comments

Comments
 (0)