Disable 2.90 builds from nightly scheduler
This commit is contained in:
10
master.cfg
10
master.cfg
@@ -195,7 +195,7 @@ builders_all_branches = set()
|
||||
|
||||
# Add builder utility.
|
||||
|
||||
def add_builder(c, name, platforms, factory, branch='', hour=3, minute=0):
|
||||
def add_builder(c, name, platforms, factory, branch='', hour=3, minute=0, use_nightly_builder=True):
|
||||
if branch != '':
|
||||
builders_all_branches.add(branch)
|
||||
|
||||
@@ -215,7 +215,7 @@ def add_builder(c, name, platforms, factory, branch='', hour=3, minute=0):
|
||||
factory=f,
|
||||
tags=['blender']))
|
||||
|
||||
if branch != '':
|
||||
if use_nightly_builder:
|
||||
schedule_nightly_build(builder_name, branch, hour, minute)
|
||||
schedule_change_build(builder_name, branch)
|
||||
schedule_force_build(builder_name, branch)
|
||||
@@ -325,7 +325,8 @@ add_builder(c,
|
||||
['windows', 'macOS_10_15', 'linux_centos7'],
|
||||
generic_builder,
|
||||
branch='blender-v2.90-release',
|
||||
hour=1)
|
||||
hour=1,
|
||||
use_nightly_builder=False)
|
||||
add_builder(c,
|
||||
'lts_283',
|
||||
['windows', 'macOS_10_13', 'linux_centos7'],
|
||||
@@ -337,7 +338,8 @@ add_builder(c,
|
||||
['windows', 'macOS_10_15', 'linux_centos7'],
|
||||
generic_builder,
|
||||
branch='',
|
||||
hour=1)
|
||||
hour=1,
|
||||
use_nightly_builder=False)
|
||||
|
||||
################################################################################
|
||||
# CHANGE SOURCES
|
||||
|
Reference in New Issue
Block a user