Skip to content

Commit 37592bf

Browse files
author
whitequark
committedDec 26, 2017
Don't remove suffix from builder names.
1 parent 40df424 commit 37592bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎master.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -687,21 +687,21 @@ addCondaUploadSteps(condaBuildFactory,
687687

688688
c['builders'].append(
689689
BuilderConfig(
690-
name = 'conda-lin',
690+
name = 'conda-lin64',
691691
slavenames = buildslaves['ubuntu-trusty-amd64'],
692692
nextSlave = nextSlave,
693693
factory = condaBuildFactory))
694694

695695
c['builders'].append(
696696
BuilderConfig(
697-
name = 'conda-win',
697+
name = 'conda-win64',
698698
slavenames = buildslaves['windows-7-x64'],
699699
nextSlave = nextSlave,
700700
factory = condaBuildFactory))
701701

702702
condaAllBuildFactory = BuildFactory()
703703
addTriggerSteps(condaAllBuildFactory,
704-
['conda-lin', 'conda-win'],
704+
['conda-lin64', 'conda-win64'],
705705
alwaysUseLatest=True,
706706
waitForFinish=True,
707707
copy_properties=['package'])

0 commit comments

Comments
 (0)
Please sign in to comment.