mirror of https://github.com/google/oss-fuzz.git
Update libfuzzer-pipeline.groovy
This commit is contained in:
parent
7ba63266d5
commit
d78f337aeb
|
@ -115,6 +115,15 @@ def call(body) {
|
||||||
sh "gsutil cp $revFile gs://clusterfuzz-builds/$projectName/"
|
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()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue