From: Thibaut VARÈNE Date: Thu, 21 Jun 2018 15:31:56 +0000 (+0200) Subject: phase1: Git step method 'clean' only works in mode 'full' X-Git-Tag: v1~148 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=dee2dcbada4d5773aa971b00e0dba6369d6e0e02;p=buildbot.git phase1: Git step method 'clean' only works in mode 'full' Signed-off-by: Thibaut VARÈNE --- diff --git a/phase1/master.cfg b/phase1/master.cfg index 5f7ca8e..c856cf3 100644 --- a/phase1/master.cfg +++ b/phase1/master.cfg @@ -493,10 +493,11 @@ for target in targets: )) # check out the source + # method clean runs 'git clean -d -f', method fresh runs 'git clean -d -f x'. Only works with mode='full' factory.addStep(Git( repourl = repo_url, branch = repo_branch, - mode = 'incremental', + mode = 'full', method = 'clean', locks = NetLockDl, ))