Lines Matching +full:ninja +full:- +full:linux
8 # http://www.apache.org/licenses/LICENSE-2.0
16 # Linux Build Script.
19 set -e
21 set -x
24 SRC=$PWD/github/SPIRV-Tools
26 # Get NINJA.
27 wget -q https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip
28 unzip -q ninja-linux.zip
32 export ANDROID_NDK=/opt/android-ndk-r15c
36 git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
37 git clone --depth=1 https://github.com/google/googletest external/googletest
38 git clone --depth=1 https://github.com/google/effcee external/effcee
39 git clone --depth=1 https://github.com/google/re2 external/re2
46 BUILD_SHA=${KOKORO_GITHUB_COMMIT:-$KOKORO_GITHUB_PULL_REQUEST_COMMIT}
47 echo $(date): Starting ndk-build ...
48 $ANDROID_NDK/ndk-build \
49 -C $SRC/android_test \
53 -j8
55 echo $(date): ndk-build completed.