Change Release builds to Release with debug info on Linux
[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=RelWithDebInfo
20     - BUILD_TYPE=Debug
21
22 compiler:
23   - clang
24   - gcc
25
26 matrix:
27   allow_failures:
28     - os: osx
29   fast_finish: true
30   include:
31     # Additional build using Android NDK with android-cmake
32     - env: BUILD_ANDROID_CMAKE=ON
33     # Additional build using Android NDK with Android.mk
34     - env: BUILD_ANDROID_MK=ON
35   exclude:
36     # Skip GCC builds on macOS.
37     - os: osx
38       compiler: gcc
39
40 cache:
41   apt: true
42
43 git:
44   depth: 1
45
46 branches:
47   only:
48     - master
49
50 before_install:
51   - if [[ "$BUILD_ANDROID_CMAKE" == "ON" ]] || [[ "$BUILD_ANDROID_MK" == "ON" ]]; then
52       git clone --depth=1 https://github.com/urho3d/android-ndk.git $HOME/android-ndk;
53       export ANDROID_NDK=$HOME/android-ndk;
54       git clone --depth=1 https://github.com/taka-no-me/android-cmake.git $HOME/android-cmake;
55       export TOOLCHAIN_PATH=$HOME/android-cmake/android.toolchain.cmake;
56     fi
57
58 before_script:
59   - git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
60   - git clone --depth=1 https://github.com/google/googletest          external/googletest
61   - git clone --depth=1 https://github.com/google/effcee              external/effcee
62   - git clone --depth=1 https://github.com/google/re2                 external/re2
63
64 script:
65   # Due to the limitation of Travis platform, we cannot start too many concurrent jobs.
66   # Otherwise GCC will panic with internal error, possibility because of memory issues.
67   # ctest with the current tests doesn't profit from using more than 4 threads.
68   - export NPROC=4;
69   - mkdir build && cd build;
70   - if [[ "$BUILD_ANDROID_MK" == "ON" ]]; then
71       export BUILD_DIR=$(pwd);
72       mkdir ${BUILD_DIR}/libs;
73       mkdir ${BUILD_DIR}/app;
74       $ANDROID_NDK/ndk-build -C ../android_test NDK_PROJECT_PATH=.
75                              NDK_LIBS_OUT=${BUILD_DIR}/libs
76                              NDK_APP_OUT=${BUILD_DIR}/app -j${NPROC};
77     elif [[ "$BUILD_ANDROID_CMAKE" == "ON" ]]; then
78       cmake -DCMAKE_TOOLCHAIN_FILE=${TOOLCHAIN_PATH}
79             -DANDROID_NATIVE_API_LEVEL=android-9
80             -DCMAKE_BUILD_TYPE=Release
81             -DANDROID_ABI="armeabi-v7a with NEON"
82             -DSPIRV_BUILD_COMPRESSION=ON
83             -DSPIRV_SKIP_TESTS=ON ..;
84       make -j${NPROC};
85     else
86       cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DSPIRV_BUILD_COMPRESSION=ON -DCMAKE_INSTALL_PREFIX=install ..;
87       make -j${NPROC} install;
88       ctest -j${NPROC} --output-on-failure --timeout 300;
89     fi
90
91 after_success:
92   # Create tarball for deployment
93   - if [[ "${CC}" == "clang" && "${BUILD_ANDROID_MK}" != "ON" && "${BUILD_ANDROID_CMAKE}" != "ON" ]]; then
94       cd install;
95       export TARBALL=SPIRV-Tools-master-${TRAVIS_OS_NAME}-${BUILD_TYPE}.zip;
96       find . -print | zip -@ ${TARBALL};
97     fi
98
99 before_deploy:
100   # Tag the current master top of the tree as "master-tot".
101   # Travis CI relies on the tag name to push to the correct release.
102   - git config --global user.name "Travis CI"
103   - git config --global user.email "builds@travis-ci.org"
104   - git tag -f master-tot
105   - git push -q -f https://${spirvtoken}@github.com/KhronosGroup/SPIRV-Tools --tags
106
107 deploy:
108   provider: releases
109   api_key: ${spirvtoken}
110   on:
111     branch: master
112     condition: ${CC} == clang && ${BUILD_ANDROID_MK} != ON && ${BUILD_ANDROID_CMAKE} != ON
113   file: ${TARBALL}
114   skip_cleanup: true
115   overwrite: true
116
117 notifications:
118   email:
119     recipients:
120       - andreyt@google.com
121       - antiagainst@google.com
122       - awoloszyn@google.com
123       - dneto@google.com
124       - ehsann@google.com
125       - qining@google.com
126     on_success: change
127     on_failure: always