[infra] more stages

This commit is contained in:
Mike Aizatsky 2016-07-25 13:27:11 -07:00
parent 3dcb9040c1
commit 33a03d3a3f
1 changed files with 6 additions and 1 deletions

View File

@ -19,9 +19,14 @@
def dockerOptions="--no-cache"
node {
stage name: 'Build Docker Images', concurrency: 1
git url: 'https://github.com/google/oss-fuzz/'
stage name: 'Build ossfuzz/base', concurrency: 1
sh "docker build $dockerOptions --pull -t ossfuzz/base infra/base-images/base"
stage name: 'Build ossfuzz/base-clang', concurrency: 1
sh "docker build $dockerOptions -t ossfuzz/base-clang infra/base-images/base-clang"
stage name: 'Build ossfuzz/base-libfuzzer', concurrency: 1
sh "docker build $dockerOptions -t ossfuzz/base-libfuzzer infra/base-images/base-libfuzzer"
}