Travis: auto deploy build artifacts to GitHub Releases
[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
60 script:
61   # Due to the limitation of Travis platform, we cannot start too many concurrent jobs.
62   # Otherwise GCC will panic with internal error, possibility because of memory issues.
63   # ctest with the current tests doesn't profit from using more than 4 threads.
64   - export NPROC=4;
65   - mkdir build && cd build;
66   - if [[ "$BUILD_ANDROID_MK" == "ON" ]]; then
67       export BUILD_DIR=$(pwd);
68       mkdir ${BUILD_DIR}/libs;
69       mkdir ${BUILD_DIR}/app;
70       $ANDROID_NDK/ndk-build -C ../android_test NDK_PROJECT_PATH=.
71                              NDK_LIBS_OUT=${BUILD_DIR}/libs
72                              NDK_APP_OUT=${BUILD_DIR}/app -j${NPROC};
73     elif [[ "$BUILD_ANDROID_CMAKE" == "ON" ]]; then
74       cmake -DCMAKE_TOOLCHAIN_FILE=${TOOLCHAIN_PATH}
75             -DANDROID_NATIVE_API_LEVEL=android-9
76             -DCMAKE_BUILD_TYPE=Release
77             -DANDROID_ABI="armeabi-v7a with NEON"
78             -DSPIRV_BUILD_COMPRESSION=ON
79             -DSPIRV_SKIP_TESTS=ON ..;
80       make -j${NPROC};
81     else
82       cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DSPIRV_BUILD_COMPRESSION=ON -DCMAKE_INSTALL_PREFIX=install ..;
83       make -j${NPROC} install;
84       ctest -j${NPROC} --output-on-failure --timeout 300;
85     fi
86
87 after_success:
88   # Create tarball for deployment
89   - if [[ "${CC}" == "clang" && "${BUILD_ANDROID_MK}" != "ON" && "${BUILD_ANDROID_CMAKE}" != "ON" ]]; then
90       cd install;
91       export TARBALL=SPIRV-Tools-master-${TRAVIS_OS_NAME}-${BUILD_TYPE}.zip;
92       find . -print | zip -@ ${TARBALL};
93     fi
94
95 before_deploy:
96   # Tag the current master top of the tree as "master-tot".
97   # Travis CI relies on the tag name to push to the correct release.
98   - git config --global user.name "Travis CI"
99   - git config --global user.email "builds@travis-ci.org"
100   - git tag -f master-tot
101   - git push -q -f https://${spirvtoken}@github.com/KhronosGroup/SPIRV-Tools --tags
102
103 deploy:
104   provider: releases
105   api_key: ${spirvtoken}
106   on:
107     branch: master
108     condition: ${CC} == clang && ${BUILD_ANDROID_MK} != ON && ${BUILD_ANDROID_CMAKE} != ON
109   file: ${TARBALL}
110   skip_cleanup: true
111   overwrite: true
112
113 notifications:
114   email:
115     recipients:
116       - andreyt@google.com
117       - antiagainst@google.com
118       - awoloszyn@google.com
119       - dneto@google.com
120       - ehsann@google.com
121       - qining@google.com
122     on_success: change
123     on_failure: always