Skip to content

Commit

Permalink
Merge pull request mozilla#331 from vaibhavmagarwal/talos-patch
Browse files Browse the repository at this point in the history
Don't trigger Windows 10 talos jobs by default to avoid depleting Win10 pool
  • Loading branch information
armenzg committed Aug 17, 2015
2 parents 369e566 + 8356e31 commit 36938ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mozci/platforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,10 @@ def build_talos_buildernames_for_repo(repo_name, pgo_only=False):
talos_jobs = pgo_jobs.union(non_pgo_jobs)

for builder in talos_jobs:
# This is a temporary hack to not trigger 'Windows 10' jobs on try.
# Remove it when not necessary.
if 'Windows 10' in builder:
continue
retVal.append(builder)

retVal.sort()
Expand Down

0 comments on commit 36938ac

Please sign in to comment.