Ejemplo n.º 1
0
 def wrapped():
     if if_changed and tools.IS_PULL_REQUEST:
         if not tools.has_changes(if_changed + BUILD_FILES):
             print('Skipping task due to no changes in %s' %
                   (', '.join(if_changed), ))
             return
     fn()
Ejemplo n.º 2
0
 def wrapped(*args, **kwargs):
     if if_changed and tools.IS_PULL_REQUEST:
         if not tools.has_changes(if_changed + BUILD_FILES):
             print("Skipping task due to no changes in %s" %
                   (", ".join(if_changed), ))
             return
     fn(*args, **kwargs)
Ejemplo n.º 3
0
 def wrapped(*args, **kwargs):
     if if_changed and tools.IS_PULL_REQUEST:
         if not tools.has_changes(if_changed + BUILD_FILES):
             print('Skipping task due to no changes in %s' % (
                 ', '.join(if_changed),
             ))
             return
     fn(*args, **kwargs)
Ejemplo n.º 4
0
def has_source_changes():
    """Returns True if any source files have changed."""
    return tools.has_changes([RUST_SRC, RUBY_SRC]) or cr.has_release()
Ejemplo n.º 5
0
def has_source_changes():
    """Returns True if any source files have changed."""
    return tools.has_changes([SRC])
Ejemplo n.º 6
0
def has_source_changes():
    return tools.has_changes([PYTHON_SRC])
Ejemplo n.º 7
0
def has_source_changes():
    """Returns True if any source files have changed."""
    return tools.has_changes([RUST_SRC, RUBY_SRC]) or cr.has_release()
def has_source_changes():
    """Returns True if any source files have changed."""
    return tools.has_changes([SRC])
Ejemplo n.º 9
0
def has_source_changes():
    return tools.has_changes([PYTHON_SRC])