Home | History | Annotate | Download | only in android
      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.
     19 set -e
     20 # Display commands being run.
     21 set -x
     22 
     23 BUILD_ROOT=$PWD
     24 SRC=$PWD/github/SPIRV-Tools
     25 TARGET_ARCH="armeabi-v7a with NEON"
     26 export ANDROID_NDK=/opt/android-ndk-r15c
     27 
     28 # Get NINJA.
     29 wget -q https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip
     30 unzip -q ninja-linux.zip
     31 export PATH="$PWD:$PATH"
     32 git clone --depth=1 https://github.com/taka-no-me/android-cmake.git android-cmake
     33 export TOOLCHAIN_PATH=$PWD/android-cmake/android.toolchain.cmake
     34 
     35 
     36 cd $SRC
     37 git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
     38 git clone --depth=1 https://github.com/google/googletest          external/googletest
     39 git clone --depth=1 https://github.com/google/effcee              external/effcee
     40 git clone --depth=1 https://github.com/google/re2                 external/re2
     41 
     42 mkdir build && cd $SRC/build
     43 
     44 # Invoke the build.
     45 BUILD_SHA=${KOKORO_GITHUB_COMMIT:-$KOKORO_GITHUB_PULL_REQUEST_COMMIT}
     46 echo $(date): Starting build...
     47 cmake -DCMAKE_BUILD_TYPE=Release -DANDROID_NATIVE_API_LEVEL=android-14 -DANDROID_ABI="armeabi-v7a with NEON" -DSPIRV_BUILD_COMPRESSION=ON -DSPIRV_SKIP_TESTS=ON -DCMAKE_TOOLCHAIN_FILE=$TOOLCHAIN_PATH -GNinja -DANDROID_NDK=$ANDROID_NDK ..
     48 
     49 echo $(date): Build everything...
     50 ninja
     51 echo $(date): Build completed.
     52