diff --git a/Documentation/js_licenses.txt b/Documentation/js_licenses.txt index 88612665e6..c2bdfbb320 100644 --- a/Documentation/js_licenses.txt +++ b/Documentation/js_licenses.txt @@ -409,7 +409,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. [[polymer]] polymer -* js:font-roboto +* js:font-roboto-local * js:iron-a11y-announcer * js:iron-a11y-keys-behavior * js:iron-autogrow-textarea diff --git a/Documentation/licenses.txt b/Documentation/licenses.txt index ac25816441..6d4b0581ab 100644 --- a/Documentation/licenses.txt +++ b/Documentation/licenses.txt @@ -2665,7 +2665,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. [[polymer]] polymer -* js:font-roboto +* js:font-roboto-local * js:iron-a11y-announcer * js:iron-a11y-keys-behavior * js:iron-autogrow-textarea diff --git a/Jenkinsfile b/Jenkinsfile index 257b53ca70..0193df35d9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -154,18 +154,19 @@ def collectBuildModes() { } def prepareBuildsForMode(buildName, mode="notedb", retryTimes = 1) { - def propagate = retryTimes == 1 ? false : true return { stage("${buildName}/${mode}") { - catchError{ - retry(retryTimes){ - def slaveBuild = build job: "${buildName}", parameters: [ + def slaveBuild = null + for (int i = 1; i <= retryTimes; i++) { + try { + slaveBuild = build job: "${buildName}", parameters: [ string(name: 'REFSPEC', value: Change.ref), string(name: 'BRANCH', value: Change.sha1), string(name: 'CHANGE_URL', value: Change.url), string(name: 'MODE', value: mode), string(name: 'TARGET_BRANCH', value: Change.branch) - ], propagate: propagate + ], propagate: false + } finally { if (buildName == "Gerrit-codestyle"){ Builds.codeStyle = new Build( slaveBuild.getAbsoluteUrl(), slaveBuild.getResult()) @@ -173,6 +174,9 @@ def prepareBuildsForMode(buildName, mode="notedb", retryTimes = 1) { Builds.verification[mode] = new Build( slaveBuild.getAbsoluteUrl(), slaveBuild.getResult()) } + if (slaveBuild.getResult() == "SUCCESS") { + break + } } } }