2021-08-30 13:51:24 +00:00
|
|
|
#!/bin/bash -eux
|
|
|
|
# Copyright 2021 Google LLC
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Install OpenJDK 15 and trim its size by removing unused components.
|
|
|
|
cd /tmp
|
|
|
|
curl -L -O https://download.java.net/java/GA/jdk15.0.2/0d1cfde4252546c6931946de8db48ee2/7/GPL/openjdk-15.0.2_linux-x64_bin.tar.gz && \
|
|
|
|
mkdir -p $JAVA_HOME
|
|
|
|
tar -xzv --strip-components=1 -f openjdk-15.0.2_linux-x64_bin.tar.gz --directory $JAVA_HOME && \
|
|
|
|
rm -f openjdk-15.0.2_linux-x64_bin.tar.gz
|
|
|
|
rm -rf $JAVA_HOME/jmods $JAVA_HOME/lib/src.zip
|
|
|
|
|
|
|
|
# Install the latest Jazzer in $OUT.
|
|
|
|
# jazzer_api_deploy.jar is required only at build-time, the agent and the
|
|
|
|
# drivers are copied to $OUT as they need to be present on the runners.
|
|
|
|
cd $SRC/
|
2022-08-17 09:21:53 +00:00
|
|
|
git clone https://github.com/CodeIntelligenceTesting/jazzer && \
|
|
|
|
cd jazzer && \
|
2022-11-22 14:23:42 +00:00
|
|
|
git checkout a9cf2aa2c4e87fe6c26e49a1a6de3e424d179c1f
|
2022-01-27 14:24:32 +00:00
|
|
|
bazel build --java_runtime_version=local_jdk_15 -c opt --cxxopt="-stdlib=libc++" --linkopt=-lc++ \
|
2022-11-22 14:23:42 +00:00
|
|
|
//driver/src/main/java/com/code_intelligence/jazzer:jazzer_standalone_deploy.jar //deploy:jazzer-api //launcher:jazzer
|
|
|
|
cp $(bazel cquery --output=files //driver/src/main/java/com/code_intelligence/jazzer:jazzer_standalone_deploy.jar) /usr/local/bin/jazzer_agent_deploy.jar
|
|
|
|
cp $(bazel cquery --output=files //launcher:jazzer) /usr/local/bin/jazzer_driver
|
|
|
|
cp $(bazel cquery --output=files //deploy:jazzer-api) $JAZZER_API_PATH
|
2021-08-30 13:51:24 +00:00
|
|
|
rm -rf ~/.cache/bazel ~/.cache/bazelisk
|
|
|
|
rm -rf $SRC/jazzer
|