• Home
  • Raw
  • Download

Lines Matching +full:- +full:j4

6   - linux
7 - osx
15- secure: aGFrgzyKp+84hKrGkxVWg8cHV61uqrKEHT38gfSQK6+WS4GfLOyH83p7WnsEBb7AMhzU7LMNFdvOFr6+NaMpVnqR…
17 - GLSLANG_BUILD_TYPE=Release
18 - GLSLANG_BUILD_TYPE=Debug
21 - clang
22 - gcc
28 - os: osx
32 - env: BUILD_NDK=ON
39 - master
44 - clang-3.6
47 # Make sure that clang-3.6 is selected on Linux.
48 - if [[ "$TRAVIS_OS_NAME" == "linux" && "$CC" == "clang" ]]; then
49 export CC=clang-3.6 CXX=clang++-3.6;
52 - if [[ "$BUILD_NDK" == "ON" ]]; then
53 export ANDROID_NDK=$HOME/android-ndk;
56 git remote add dneto0 https://github.com/dneto0/android-ndk.git;
57 git fetch --depth=1 dneto0 r17b-strip;
64 - git clone --depth=1 https://github.com/google/googletest.git External/googletest
65 - ./update_glslang_sources.py
68 - mkdir build && cd build
70 # Use android-14, the oldest native API level supporeted by NDK r17b.
73 - if [[ "$BUILD_NDK" == "ON" ]]; then
74 cmake -DCMAKE_TOOLCHAIN_FILE=${TOOLCHAIN_PATH}
75 -DANDROID_NATIVE_API_LEVEL=android-14
76 -DCMAKE_BUILD_TYPE=Release
77 -DANDROID_ABI="armeabi-v7a with NEON"
78 -DBUILD_TESTING=OFF ..;
79 make -j4;
81 cmake -DCMAKE_BUILD_TYPE=${GLSLANG_BUILD_TYPE}
82 -DCMAKE_INSTALL_PREFIX=`pwd`/install ..;
83 make -j4 install;
84 ctest --output-on-failure &&
90 - if [[ "${GLSLANG_BUILD_TYPE}" == "Debug" ]]; then
96 - if [[ ${CC} == clang* && "${BUILD_NDK}" != "ON" ]]; then
98 export TARBALL=glslang-master-${TRAVIS_OS_NAME}-${GLSLANG_BUILD_TYPE}.zip;
109 lib/libSPIRV-Tools${SUFFIX}.a
110 lib/libSPIRV-Tools-opt${SUFFIX}.a;
114 # Tag the current top of the tree as "master-tot".
116 - git config --global user.name "Travis CI"
117 - git config --global user.email "builds@travis-ci.org"
118 - git tag -f master-tot
119 - git push -q -f https://${glslangtoken}@github.com/KhronosGroup/glslang --tags