2018-07-06 17:01:22 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright (c) 2018 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.
|
|
|
|
#
|
|
|
|
# Linux Build Script.
|
|
|
|
|
|
|
|
# Fail on any error.
|
|
|
|
set -e
|
|
|
|
# Display commands being run.
|
|
|
|
set -x
|
|
|
|
|
|
|
|
BUILD_ROOT=$PWD
|
|
|
|
SRC=$PWD/github/SPIRV-Tools
|
|
|
|
CONFIG=$1
|
|
|
|
COMPILER=$2
|
|
|
|
|
|
|
|
SKIP_TESTS="False"
|
|
|
|
BUILD_TYPE="Debug"
|
|
|
|
|
|
|
|
CMAKE_C_CXX_COMPILER=""
|
|
|
|
if [ $COMPILER = "clang" ]
|
|
|
|
then
|
2019-03-06 22:21:24 +00:00
|
|
|
PATH=/usr/lib/llvm-3.8/bin:$PATH
|
2018-07-06 17:01:22 +00:00
|
|
|
CMAKE_C_CXX_COMPILER="-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Possible configurations are:
|
|
|
|
# ASAN, COVERAGE, RELEASE, DEBUG, DEBUG_EXCEPTION, RELEASE_MINGW
|
|
|
|
|
|
|
|
if [ $CONFIG = "RELEASE" ] || [ $CONFIG = "RELEASE_MINGW" ]
|
|
|
|
then
|
|
|
|
BUILD_TYPE="RelWithDebInfo"
|
|
|
|
fi
|
|
|
|
|
|
|
|
ADDITIONAL_CMAKE_FLAGS=""
|
|
|
|
if [ $CONFIG = "ASAN" ]
|
|
|
|
then
|
2019-04-11 20:33:26 +00:00
|
|
|
ADDITIONAL_CMAKE_FLAGS="SPIRV_USE_SANITIZER=address"
|
2019-03-06 22:21:24 +00:00
|
|
|
[ $COMPILER = "clang" ] || { echo "$CONFIG requires clang"; exit 1; }
|
2018-07-06 17:01:22 +00:00
|
|
|
elif [ $CONFIG = "COVERAGE" ]
|
|
|
|
then
|
|
|
|
ADDITIONAL_CMAKE_FLAGS="-DENABLE_CODE_COVERAGE=ON"
|
|
|
|
SKIP_TESTS="True"
|
|
|
|
elif [ $CONFIG = "DEBUG_EXCEPTION" ]
|
|
|
|
then
|
|
|
|
ADDITIONAL_CMAKE_FLAGS="-DDISABLE_EXCEPTIONS=ON -DDISABLE_RTTI=ON"
|
|
|
|
elif [ $CONFIG = "RELEASE_MINGW" ]
|
|
|
|
then
|
|
|
|
ADDITIONAL_CMAKE_FLAGS="-Dgtest_disable_pthreads=ON -DCMAKE_TOOLCHAIN_FILE=$SRC/cmake/linux-mingw-toolchain.cmake"
|
|
|
|
SKIP_TESTS="True"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Get NINJA.
|
|
|
|
wget -q https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip
|
|
|
|
unzip -q ninja-linux.zip
|
|
|
|
export PATH="$PWD:$PATH"
|
|
|
|
|
|
|
|
cd $SRC
|
|
|
|
git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
|
2018-09-27 13:44:01 +00:00
|
|
|
git clone --depth=1 https://github.com/google/googletest external/googletest
|
2018-07-06 17:01:22 +00:00
|
|
|
git clone --depth=1 https://github.com/google/effcee external/effcee
|
|
|
|
git clone --depth=1 https://github.com/google/re2 external/re2
|
2019-05-22 17:24:11 +00:00
|
|
|
git clone --depth=1 https://github.com/protocolbuffers/protobuf external/protobuf
|
|
|
|
pushd external/protobuf
|
|
|
|
git fetch --all --tags --prune
|
|
|
|
git checkout v3.7.1
|
|
|
|
popd
|
2018-07-06 17:01:22 +00:00
|
|
|
|
|
|
|
mkdir build && cd $SRC/build
|
|
|
|
|
|
|
|
# Invoke the build.
|
|
|
|
BUILD_SHA=${KOKORO_GITHUB_COMMIT:-$KOKORO_GITHUB_PULL_REQUEST_COMMIT}
|
|
|
|
echo $(date): Starting build...
|
2019-05-22 17:24:11 +00:00
|
|
|
cmake -DPYTHON_EXECUTABLE:FILEPATH=/usr/bin/python3 -GNinja -DCMAKE_INSTALL_PREFIX=$KOKORO_ARTIFACTS_DIR/install -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DRE2_BUILD_TESTING=OFF -DSPIRV_BUILD_FUZZER=ON $ADDITIONAL_CMAKE_FLAGS $CMAKE_C_CXX_COMPILER ..
|
2018-07-06 17:01:22 +00:00
|
|
|
|
|
|
|
echo $(date): Build everything...
|
|
|
|
ninja
|
|
|
|
echo $(date): Build completed.
|
|
|
|
|
|
|
|
if [ $CONFIG = "COVERAGE" ]
|
|
|
|
then
|
|
|
|
echo $(date): Check coverage...
|
|
|
|
ninja report-coverage
|
|
|
|
echo $(date): Check coverage completed.
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo $(date): Starting ctest...
|
|
|
|
if [ $SKIP_TESTS = "False" ]
|
|
|
|
then
|
|
|
|
ctest -j4 --output-on-failure --timeout 300
|
|
|
|
fi
|
|
|
|
echo $(date): ctest completed.
|
|
|
|
|
2019-05-02 18:25:09 +00:00
|
|
|
# Package the build.
|
|
|
|
ninja install
|
|
|
|
cd $KOKORO_ARTIFACTS_DIR
|
|
|
|
tar czf install.tgz install
|