[infra] using all.sh instead of jenkins script

This commit is contained in:
Mike Aizatsky 2016-12-06 21:50:51 -08:00 committed by GitHub
parent ba0304c6a9
commit bddc4d7fee
1 changed files with 1 additions and 21 deletions

View File

@ -15,27 +15,7 @@
////////////////////////////////////////////////////////////////////////////////
// Jenkins build script for base images.
def dockerOptions="--no-cache"
node {
git url: 'https://github.com/google/oss-fuzz/'
dir ("infra/base-images") {
stage name: 'ossfuzz/base', concurrency: 1
sh "docker build $dockerOptions --pull -t ossfuzz/base base"
stage name: 'ossfuzz/base-clang', concurrency: 1
sh "docker build $dockerOptions -t ossfuzz/base-clang base-clang"
stage name: 'ossfuzz/base-libfuzzer', concurrency: 1
sh "docker build $dockerOptions -t ossfuzz/base-libfuzzer base-libfuzzer"
stage name: 'ossfuzz/base-runner', concurrency: 1
sh "docker build $dockerOptions -t ossfuzz/base-runner base-runner"
stage name: 'ossfuzz/libfuzzer-runner', concurrency: 1
sh "docker build $dockerOptions -t ossfuzz/libfuzzer-runner libfuzzer-runner"
}
sh "infra/base-images/all.sh --no-cache"
}