1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
#!/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
# This is required to run any git command in the docker since owner will
# have changed between the clone environment, and the docker container.
# Marking the root of the repo as safe for ownership changes.
git config --global --add safe.directory $ROOT_DIR
. /bin/using.sh # Declare the bash `using` function for configuring toolchains.
using python-3.12
if [ $COMPILER = "clang" ]; then
using clang-13.0.1
elif [ $COMPILER = "gcc" ]; then
using gcc-13
fi
cd $ROOT_DIR
function clean_dir() {
dir=$1
if [[ -d "$dir" ]]; then
rm -fr "$dir"
fi
mkdir "$dir"
}
if [ $TOOL != "cmake-shaderc-smoketest" ] && [ $TOOL != "cmake-dxc-smoketest" ]; then
# Get source for dependencies, as specified in the DEPS file
/usr/bin/python3 utils/git-sync-deps --treeless
fi
if [ $TOOL = "cmake" ]; then
using cmake-3.31.2
using ninja-1.10.0
# Possible configurations are:
# ASAN, UBSAN, COVERAGE, RELEASE, DEBUG, DEBUG_EXCEPTION, RELEASE_MINGW
BUILD_TYPE="Debug"
if [ $CONFIG = "RELEASE" ] || [ $CONFIG = "RELEASE_MINGW" ]; then
BUILD_TYPE="RelWithDebInfo"
fi
SKIP_TESTS="False"
ADDITIONAL_CMAKE_FLAGS=""
if [ $CONFIG = "ASAN" ]; then
ADDITIONAL_CMAKE_FLAGS="-DSPIRV_USE_SANITIZER=address,bounds,null"
[ $COMPILER = "clang" ] || { echo "$CONFIG requires clang"; exit 1; }
elif [ $CONFIG = "UBSAN" ]; then
# UBSan requires RTTI, and by default UBSan does not exit when errors are
# encountered - additional compiler options are required to force this.
# The -DSPIRV_USE_SANITIZER=undefined option instructs SPIR-V Tools to be
# built with UBSan enabled.
ADDITIONAL_CMAKE_FLAGS="-DSPIRV_USE_SANITIZER=undefined -DENABLE_RTTI=ON -DCMAKE_C_FLAGS=-fno-sanitize-recover=all -DCMAKE_CXX_FLAGS=-fno-sanitize-recover=all"
[ $COMPILER = "clang" ] || { echo "$CONFIG requires clang"; exit 1; }
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
if [ $COMPILER = "clang" ]; then
ADDITIONAL_CMAKE_FLAGS="$ADDITIONAL_CMAKE_FLAGS -DSPIRV_BUILD_LIBFUZZER_TARGETS=ON"
fi
clean_dir "$ROOT_DIR/build"
cd "$ROOT_DIR/build"
# Invoke the build.
BUILD_SHA=${KOKORO_GITHUB_COMMIT:-$KOKORO_GITHUB_PULL_REQUEST_COMMIT}
echo $(date): Starting build...
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 ..
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.
# Package the build.
ninja install
cd $KOKORO_ARTIFACTS_DIR
tar czf install.tgz install
elif [ $TOOL = "cmake-shaderc-smoketest" ]; then
using cmake-3.31.2
using ninja-1.10.0
# Get shaderc.
SHADERC_DIR=/tmp/shaderc
clean_dir "$SHADERC_DIR"
cd $SHADERC_DIR
git clone https://github.com/google/shaderc.git .
cd $SHADERC_DIR/third_party
# Get shaderc dependencies. Link the appropriate SPIRV-Tools.
git clone https://github.com/google/googletest.git
git clone https://github.com/KhronosGroup/glslang.git
ln -s $ROOT_DIR spirv-tools
git clone https://github.com/KhronosGroup/SPIRV-Headers.git spirv-headers
git clone https://github.com/google/re2
git clone https://github.com/google/effcee
git clone https://github.com/abseil/abseil-cpp abseil_cpp
cd $SHADERC_DIR
mkdir build
cd $SHADERC_DIR/build
# Invoke the build.
echo $(date): Starting build...
cmake -GNinja -DRE2_BUILD_TESTING=OFF -DCMAKE_BUILD_TYPE="Release" ..
echo $(date): Build glslang...
ninja glslang-standalone
echo $(date): Build everything...
ninja
echo $(date): Build completed.
echo $(date): Check Shaderc for copyright notices...
ninja check-copyright
echo $(date): Starting ctest...
ctest --output-on-failure -j4
echo $(date): ctest completed.
elif [ $TOOL = "cmake-dxc-smoketest" ]; then
using cmake-3.31.2
using ninja-1.10.0
# Get shaderc.
DXC_DIR=/tmp/dxc
clean_dir "$DXC_DIR"
cd $DXC_DIR
git clone https://github.com/microsoft/DirectXShaderCompiler.git .
cd $DXC_DIR/external
# Get DXC dependencies. Link the appropriate SPIRV-Tools.
git submodule update --init DirectX-Headers
rm -rf SPIRV-Tools
ln -s $ROOT_DIR SPIRV-Tools
git clone https://github.com/KhronosGroup/SPIRV-Headers.git SPIRV-Headers
cd $DXC_DIR
mkdir build
cd $DXC_DIR/build
# Invoke the build.
echo $(date): Configuring build...
cmake $DXC_DIR \
-C $DXC_DIR/cmake/caches/PredefinedParams.cmake \
-DCMAKE_BUILD_TYPE="Release" \
-G Ninja
echo $(date): Building ClangSPIRVTests...
ninja ClangSPIRVTests
echo $(date): Testing ClangSPIRVTests...
tools/clang/unittests/SPIRV/ClangSPIRVTests
echo $(date): Testing check-clang-codegenspirv...
ninja check-clang-codegenspirv
elif [ $TOOL = "cmake-android-ndk" ]; then
using cmake-3.31.2
using ndk-r27c
using ninja-1.10.0
clean_dir "$ROOT_DIR/build"
cd "$ROOT_DIR/build"
echo $(date): Starting build...
cmake -DCMAKE_BUILD_TYPE=Release \
-DANDROID_NATIVE_API_LEVEL=android-24 \
-DANDROID_ABI="armeabi-v7a with NEON" \
-DSPIRV_SKIP_TESTS=ON \
-DCMAKE_TOOLCHAIN_FILE="$ANDROID_NDK_HOME/build/cmake/android.toolchain.cmake" \
-GNinja \
-DANDROID_NDK=$ANDROID_NDK \
..
echo $(date): Build everything...
ninja
echo $(date): Build completed.
elif [ $TOOL = "android-ndk-build" ]; then
using ndk-r27c
clean_dir "$ROOT_DIR/build"
cd "$ROOT_DIR/build"
echo $(date): Starting ndk-build ...
$ANDROID_NDK_HOME/ndk-build \
-C $ROOT_DIR/android_test \
NDK_PROJECT_PATH=. \
NDK_LIBS_OUT=./libs \
NDK_APP_OUT=./app \
-j4
echo $(date): ndk-build completed.
elif [ $TOOL = "bazel" ]; then
using bazel-7.4.0
echo $(date): Build everything...
bazel build --cxxopt=-std=c++17 :all
echo $(date): Build completed.
echo $(date): Starting bazel test...
bazel test --cxxopt=-std=c++17 :all
echo $(date): Bazel test completed.
fi
|