Chris Forbes | cc5697f | 2019-01-30 11:54:08 -0800 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # Copyright (c) 2018 Google LLC. |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | # Android Build Script. |
| 17 | |
| 18 | # Fail on any error. |
| 19 | set -e |
| 20 | # Display commands being run. |
| 21 | set -x |
| 22 | |
| 23 | BUILD_ROOT=$PWD |
| 24 | SRC=$PWD/github/SPIRV-Tools |
| 25 | |
| 26 | # Get clang-format-5.0.0. |
| 27 | # Once kokoro upgrades the Ubuntu VMs, we can use 'apt-get install clang-format' |
| 28 | curl -L http://releases.llvm.org/5.0.0/clang+llvm-5.0.0-linux-x86_64-ubuntu14.04.tar.xz -o clang-llvm.tar.xz |
| 29 | tar xf clang-llvm.tar.xz |
| 30 | export PATH=$PWD/clang+llvm-5.0.0-linux-x86_64-ubuntu14.04/bin:$PATH |
| 31 | |
| 32 | cd $SRC |
| 33 | git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers |
| 34 | git clone --depth=1 https://github.com/google/googletest external/googletest |
| 35 | git clone --depth=1 https://github.com/google/effcee external/effcee |
| 36 | git clone --depth=1 https://github.com/google/re2 external/re2 |
| 37 | curl -L http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format/clang-format-diff.py -o utils/clang-format-diff.py; |
| 38 | |
| 39 | echo $(date): Check formatting... |
| 40 | ./utils/check_code_format.sh; |
| 41 | echo $(date): check completed. |