[infra] tweaking pipeline

This commit is contained in:
Mike Aizatsky 2016-08-11 17:24:19 -07:00
parent fa2250c31c
commit 22d82c1bbf
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ def call(body) {
def dockerTag = "ossfuzz/$projectName-$sanitizer"
dir(sanitizer) {
stage name: "$sanitizer sanitizer"
stage name: "Building $sanitizer sanitizer"
def workspace = pwd();
def out = "$wsPwd/out/$sanitizer"
@ -93,7 +93,7 @@ def call(body) {
for (int i = 0; i < sanitizers.size(); i++) {
def sanitizer = sanitizers[i]
dir (sanitizer) {
def zipFile = "$projectName-$sanitizer-$date.zip"
def zipFile = "$projectName-$sanitizer-${date}.zip"
sh "zip -j $zipFile *"
sh "gsutil cp $zipFile gs://clusterfuzz-builds/$projectName/"
}