Update libfuzzer-pipeline.groovy

This commit is contained in:
Mike Aizatsky 2016-10-06 14:26:09 -07:00 committed by GitHub
parent 7ba63266d5
commit d78f337aeb
1 changed files with 9 additions and 0 deletions

View File

@ -115,6 +115,15 @@ def call(body) {
sh "gsutil cp $revFile gs://clusterfuzz-builds/$projectName/"
}
}
stage name: "Pushing Images"
docker.withRegistry('', 'docker-login') {
for (int i = 0; i < sanitizers.size(); i++) {
def sanitizer = sanitizers[i]
def dockerTag = "ossfuzz/$projectName-$sanitizer"
docker.image(dockerTag).push()
}
}
}
}