From a4390b26cbe30263033a3dab639b1d3d46dff442 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Fri, 31 May 2019 15:17:45 -0400 Subject: [PATCH] [INFRA-2028] The timestamps step is no longer necessary. --- vars/buildPlugin.groovy | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/vars/buildPlugin.groovy b/vars/buildPlugin.groovy index bfcf4a017..e1b0751cc 100644 --- a/vars/buildPlugin.groovy +++ b/vars/buildPlugin.groovy @@ -171,11 +171,9 @@ def call(Map params = [:]) { } } - timestamps { - parallel(tasks) - if (publishingIncrementals) { - infra.maybePublishIncrementals() - } + parallel(tasks) + if (publishingIncrementals) { + infra.maybePublishIncrementals() } }