Tests: Add optional dependency on Effcee stateful matcher
[platform/upstream/SPIRV-Tools.git] / .travis.yml
1 # Linux Build Configuration for Travis
2
3 language: cpp
4
5 os:
6   - linux
7   - osx
8
9 # Use Ubuntu 14.04 LTS (Trusty) as the Linux testing environment.
10 dist: trusty
11 sudo: false
12
13 env:
14   global:
15     - secure: IoR/Xe9E+NnLAeI23WrmUsGQn5rocz+XRYUk+BbaoKiIRYm4q72GKyypRoOGLu7wImOXFSvnN/dpdnqIpx4W0NfsSvNdlXyhDy+wvT1kzTt77dJGnkGZTZ2SBOtC9AECLy4sqM9HG0rYRR6WfXcnP2GlrE5f2aF07aISQbOUsQMvyyhtCmVAzIigK1zIUto5I0pNenvo/Y+ur+mEvTh+FtaoDIGepCbZlCc+OxqRXwXNlI7mDXbzLPmTB1FWTGsrZdRX8czF9tN9Y+T79DQjB4Lcyyeow8yU9NBVlgzZJcp1xI0UIskRT8gVrXmBYL2dMeHnDQuhxjEg9n7jfr3ptA9rgwMaSsgdaLwuBXgtPuqVgUYDpE1cP8WI8q38MXX0I6psTs/WHu+z+5UwfjzpPOHmGdVt48o8ymFTapvD5Cf1+uJyk73QkyStnPIdBF1N9Yx5sD7HN28K6/Ro12sCCePHUZ9Uz1DdZI6XxkgCNKNwao0csAyvODxD6Ee43mkExtviB8BJY5jWLIMTdGhgEGH2sRqils8IDW0p8AOTPM4UC7iA7hdg3pA+XMvBHvP9ixsY7tuB+yR2AfnFaSw2DVbwI5GgFdFMNHXYuL+9V9Wuh3keBKYQT/Hy1YvxjQ/t9UouYHqEsyVFUl3R4lEAM9+qSRsRu+EKmcSO2QtCsWc=
16   matrix:
17     # Each line is a set of environment variables set before a build.
18     # Thus each line represents a different build configuration.
19     - BUILD_TYPE=Release
20     - BUILD_TYPE=Debug
21
22 compiler:
23   - clang
24   - gcc
25
26 matrix:
27   fast_finish: true
28   include:
29     # Additional build using Android NDK with android-cmake
30     - env: BUILD_ANDROID_CMAKE=ON
31     # Additional build using Android NDK with Android.mk
32     - env: BUILD_ANDROID_MK=ON
33   exclude:
34     # Skip GCC builds on macOS.
35     - os: osx
36       compiler: gcc
37
38 cache:
39   apt: true
40
41 git:
42   depth: 1
43
44 branches:
45   only:
46     - master
47
48 before_install:
49   - if [[ "$BUILD_ANDROID_CMAKE" == "ON" ]] || [[ "$BUILD_ANDROID_MK" == "ON" ]]; then
50       git clone --depth=1 https://github.com/urho3d/android-ndk.git $HOME/android-ndk;
51       export ANDROID_NDK=$HOME/android-ndk;
52       git clone --depth=1 https://github.com/taka-no-me/android-cmake.git $HOME/android-cmake;
53       export TOOLCHAIN_PATH=$HOME/android-cmake/android.toolchain.cmake;
54     fi
55
56 before_script:
57   - git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
58   - git clone --depth=1 https://github.com/google/googletest          external/googletest
59   - git clone --depth=1 https://github.com/google/effcee              external/effcee
60   - git clone --depth=1 https://github.com/google/re2                 external/re2
61
62 script:
63   # Due to the limitation of Travis platform, we cannot start too many concurrent jobs.
64   # Otherwise GCC will panic with internal error, possibility because of memory issues.
65   # ctest with the current tests doesn't profit from using more than 4 threads.
66   - export NPROC=4;
67   - mkdir build && cd build;
68   - if [[ "$BUILD_ANDROID_MK" == "ON" ]]; then
69       export BUILD_DIR=$(pwd);
70       mkdir ${BUILD_DIR}/libs;
71       mkdir ${BUILD_DIR}/app;
72       $ANDROID_NDK/ndk-build -C ../android_test NDK_PROJECT_PATH=.
73                              NDK_LIBS_OUT=${BUILD_DIR}/libs
74                              NDK_APP_OUT=${BUILD_DIR}/app -j${NPROC};
75     elif [[ "$BUILD_ANDROID_CMAKE" == "ON" ]]; then
76       cmake -DCMAKE_TOOLCHAIN_FILE=${TOOLCHAIN_PATH}
77             -DANDROID_NATIVE_API_LEVEL=android-9
78             -DCMAKE_BUILD_TYPE=Release
79             -DANDROID_ABI="armeabi-v7a with NEON"
80             -DSPIRV_BUILD_COMPRESSION=ON
81             -DSPIRV_SKIP_TESTS=ON ..;
82       make -j${NPROC};
83     else
84       cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DSPIRV_BUILD_COMPRESSION=ON -DCMAKE_INSTALL_PREFIX=install ..;
85       make -j${NPROC} install;
86       ctest -j${NPROC} --output-on-failure --timeout 300;
87     fi
88
89 after_success:
90   # Create tarball for deployment
91   - if [[ "${CC}" == "clang" && "${BUILD_ANDROID_MK}" != "ON" && "${BUILD_ANDROID_CMAKE}" != "ON" ]]; then
92       cd install;
93       export TARBALL=SPIRV-Tools-master-${TRAVIS_OS_NAME}-${BUILD_TYPE}.zip;
94       find . -print | zip -@ ${TARBALL};
95     fi
96
97 before_deploy:
98   # Tag the current master top of the tree as "master-tot".
99   # Travis CI relies on the tag name to push to the correct release.
100   - git config --global user.name "Travis CI"
101   - git config --global user.email "builds@travis-ci.org"
102   - git tag -f master-tot
103   - git push -q -f https://${spirvtoken}@github.com/KhronosGroup/SPIRV-Tools --tags
104
105 deploy:
106   provider: releases
107   api_key: ${spirvtoken}
108   on:
109     branch: master
110     condition: ${CC} == clang && ${BUILD_ANDROID_MK} != ON && ${BUILD_ANDROID_CMAKE} != ON
111   file: ${TARBALL}
112   skip_cleanup: true
113   overwrite: true
114
115 notifications:
116   email:
117     recipients:
118       - andreyt@google.com
119       - antiagainst@google.com
120       - awoloszyn@google.com
121       - dneto@google.com
122       - ehsann@google.com
123       - qining@google.com
124     on_success: change
125     on_failure: always