Skip to content
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

Another Windows builder. Split up linux-rel. #494

Merged
merged 4 commits into from Sep 30, 2016
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Use range instead of xrange to support Python3

  • Loading branch information
larsbergstrom committed Sep 30, 2016
commit deebf6b481ff30d65acaf0a472d1316acc75909e
@@ -8,10 +8,10 @@ from passwords import SLAVE_PASSWORD, CHANGE_PASSWORD
from passwords import HOMU_BUILDBOT_SECRET, GITHUB_STATUS_TOKEN


LINUX_SLAVES = ["servo-linux{}".format(i) for i in xrange(1, 7)]
LINUX_SLAVES = ["servo-linux{}".format(i) for i in range(1, 7)]
MAC_SLAVES = ["servo-mac2", "servo-mac3", "servo-mac4", "servo-macpro1"]
CROSS_SLAVES = ["servo-linux-cross{}".format(i) for i in xrange(1, 3)]
WINDOWS_SLAVES = ["servo-windows{}".format(i) for i in xrange(1, 3)]
CROSS_SLAVES = ["servo-linux-cross{}".format(i) for i in range(1, 3)]
WINDOWS_SLAVES = ["servo-windows{}".format(i) for i in range(1, 3)]


c = BuildmasterConfig = {}
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.