blob: 8a5df9a835ff845c69a4b75ad1cbb524a4b4e54d [file] [log] [blame]
Ehsan97951372018-07-06 13:01:22 -04001#!/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.
19set -e
20# Display commands being run.
21set -x
22
23BUILD_ROOT=$PWD
Alan Baker9244e6f2019-03-18 15:14:41 -040024SRC=$PWD/github/SPIRV-Tools
Ehsan97951372018-07-06 13:01:22 -040025
Ehsanaee809d2018-07-11 17:34:38 -040026# Get clang-format-5.0.0.
27# Once kokoro upgrades the Ubuntu VMs, we can use 'apt-get install clang-format'
28curl -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
29tar xf clang-llvm.tar.xz
30export PATH=$PWD/clang+llvm-5.0.0-linux-x86_64-ubuntu14.04/bin:$PATH
31
Ehsan97951372018-07-06 13:01:22 -040032cd $SRC
Alan Baker9244e6f2019-03-18 15:14:41 -040033git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
Alastair Donaldson663d0502020-10-16 14:58:35 +010034git clone https://github.com/google/googletest external/googletest
35cd external && cd googletest && git reset --hard 1fb1bb23bb8418dc73a5a9a82bbed31dc610fec7 && cd .. && cd ..
Alan Baker9244e6f2019-03-18 15:14:41 -040036git clone --depth=1 https://github.com/google/effcee external/effcee
37git clone --depth=1 https://github.com/google/re2 external/re2
Paul Thomson62103752021-04-09 23:36:36 +010038# The --fail flag causes the command to fail on HTTP error response codes, like 404.
39curl -L --fail https://raw.githubusercontent.com/llvm/llvm-project/main/clang/tools/clang-format/clang-format-diff.py -o utils/clang-format-diff.py
Ehsan97951372018-07-06 13:01:22 -040040
41echo $(date): Check formatting...
42./utils/check_code_format.sh;
43echo $(date): check completed.