diff --git a/infra/images/Jenkinsfile b/infra/images/Jenkinsfile new file mode 100644 index 000000000..9540fa68a --- /dev/null +++ b/infra/images/Jenkinsfile @@ -0,0 +1,28 @@ +// 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" + +git url: 'https://github.com/google/oss-fuzz/' +sh "docker build $dockerOptions --pull -t libfuzzer/base infra/images/base" +sh "docker build $dockerOptions -t libfuzzer/base-clang infra/images/base-clang" +sh "docker build $dockerOptions -t libfuzzer/base-fuzzer infra/images/base-fuzzer" + +// cleanup stale docker images +sh "docker rm $(docker ps -a -q) || true" +sh "docker rmi $(docker images -q -f dangling=true) || true"