Update libfuzzer-pipeline.groovy

This commit is contained in:
Mike Aizatsky 2016-11-14 20:44:01 -08:00 committed by GitHub
parent 458adaa488
commit 99c89dfefd
1 changed files with 7 additions and 6 deletions

View File

@ -14,11 +14,6 @@
//
////////////////////////////////////////////////////////////////////////////////
def sanitizerFlags = [
"address":"-fsanitize=address",
"undefined":"-fsanitize=bool"
]
def call(body) {
// evaluate the body block, and collect configuration into the object
def config = [:]
@ -37,7 +32,13 @@ def call(body) {
def checkoutDir = config["checkoutDir"] ?: projectName
def dockerContextDir = config["dockerContextDir"]
def date = java.time.format.DateTimeFormatter.ofPattern("yyyyMMddHHmm")
// Flags configuration
def sanitizerFlags = [
"address":"-fsanitize=address",
"undefined":"-fsanitize=bool"
]
def date = java.time.format.DateTimeFormatter.ofPattern("yyyyMMddHHmm")
.format(java.time.LocalDateTime.now())
node {