Skip to content
This repository has been archived by the owner on Mar 29, 2019. It is now read-only.

Commit

Permalink
Add support for talos-linux*-ix slaves
Browse files Browse the repository at this point in the history
  • Loading branch information
ccooper committed Apr 17, 2013
1 parent 6520fc3 commit 06ed0cb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions releng/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,10 @@ class LinuxBuildHost(UnixishHost):
prompt = "]$ "
bbdir = "/builds/slave"

class LinuxIXTalosHost(UnixishHost):
prompt = "$ "
bbdir = "/builds/slave/talos-slave"

class LinuxTalosHost(UnixishHost):
prompt = "]$ "
bbdir = "/home/cltbld/talos-slave"
Expand Down Expand Up @@ -739,6 +743,9 @@ def getHost(self, hostname, verbose=False):
elif 't-w864' in hostname:
result = Win864TalosHost(hostname, self, verbose=verbose)

elif 'talos-linux32-ix' in hostname or 'talos-linux64-ix' in hostname:
result = LinuxIXTalosHost(hostname, self, verbose=verbose)

elif 'moz2-linux' in hostname or 'linux-ix' in hostname or \
'try-linux' in hostname or 'linux64-ix-' in hostname or \
'bld-centos' in hostname:
Expand Down

0 comments on commit 06ed0cb

Please sign in to comment.