1#!/bin/bash 2# Copyright (c) 2018 Google LLC. 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16# Android Build Script. 17 18# Fail on any error. 19set -e 20# Display commands being run. 21set -x 22 23BUILD_ROOT=$PWD 24SRC=$PWD/github/SPIRV-Tools 25TARGET_ARCH="armeabi-v7a with NEON" 26export ANDROID_NDK=/opt/android-ndk-r15c 27 28# Get NINJA. 29wget -q https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip 30unzip -q ninja-linux.zip 31export PATH="$PWD:$PATH" 32git clone --depth=1 https://github.com/taka-no-me/android-cmake.git android-cmake 33export TOOLCHAIN_PATH=$PWD/android-cmake/android.toolchain.cmake 34 35 36cd $SRC 37git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers 38git clone --depth=1 https://github.com/google/googletest external/googletest 39git clone --depth=1 https://github.com/google/effcee external/effcee 40git clone --depth=1 https://github.com/google/re2 external/re2 41 42mkdir build && cd $SRC/build 43 44# Invoke the build. 45BUILD_SHA=${KOKORO_GITHUB_COMMIT:-$KOKORO_GITHUB_PULL_REQUEST_COMMIT} 46echo $(date): Starting build... 47cmake -DPYTHON_EXECUTABLE:FILEPATH=/usr/bin/python3 -DCMAKE_BUILD_TYPE=Release -DANDROID_NATIVE_API_LEVEL=android-14 -DANDROID_ABI="armeabi-v7a with NEON" -DSPIRV_SKIP_TESTS=ON -DCMAKE_TOOLCHAIN_FILE=$TOOLCHAIN_PATH -GNinja -DANDROID_NDK=$ANDROID_NDK .. 48 49echo $(date): Build everything... 50ninja 51echo $(date): Build completed. 52