[infra] nit

This commit is contained in:
Mike Aizatsky 2016-10-19 17:20:28 -07:00 committed by GitHub
parent bfd44e9e27
commit b646ef6456
1 changed files with 2 additions and 2 deletions

View File

@ -32,13 +32,13 @@ def call(body) {
def checkoutDir = config["checkoutDir"] ?: projectName
def dockerContextDir = config["dockerContextDir"]
def uid = sh(returnStdout: true, script: 'echo $UID')
def date = java.time.format.DateTimeFormatter.ofPattern("yyyyMMddHHmm")
.format(java.time.LocalDateTime.now())
node {
def workspace = pwd()
def uid = sh(returnStdout: true, script: 'echo $UID')
def revisionsFile = "$workspace/${projectName}.rev"
def dockerTag = "ossfuzz/$projectName"
echo "Building $dockerTag"