oss-fuzz/infra/base-images/Jenkinsfile

28 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-07-20 22:04:39 +00:00
// Copyright 2016 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
// Jenkins build script for base images.
def dockerOptions="--no-cache"
2016-07-20 22:11:12 +00:00
node {
2016-07-21 17:14:13 +00:00
stage name: 'Build Docker Images', concurrency: 1
2016-07-20 22:11:12 +00:00
git url: 'https://github.com/google/oss-fuzz/'
2016-07-21 19:43:53 +00:00
sh "docker build $dockerOptions --pull -t ossfuzz/base infra/base-images/base"
sh "docker build $dockerOptions -t ossfuzz/base-clang infra/base-images/base-clang"
sh "docker build $dockerOptions -t ossfuzz/base-libfuzzer infra/base-images/base-libfuzzer"
2016-07-25 20:17:37 +00:00
}