Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/kokoro
diff options
context:
space:
mode:
authorSarahM0 <sarahmashay@google.com>2019-03-18 21:07:36 +0300
committerSarahM0 <sarahmashay@google.com>2019-03-18 21:07:36 +0300
commitda5a780ff9fff7e226ca84728075adabc4d1608c (patch)
tree10554f36432ef643a54b5586cdf72e45c067d6e9 /kokoro
parent2ac348b5c0a58c64305379baca778c2e58873cd6 (diff)
Variable pointers cannot be an operand to OpArrayLength
Diffstat (limited to 'kokoro')
-rw-r--r--kokoro/check-format/build.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/kokoro/check-format/build.sh b/kokoro/check-format/build.sh
index 2a8d50fb5..888d24b63 100644
--- a/kokoro/check-format/build.sh
+++ b/kokoro/check-format/build.sh
@@ -21,7 +21,8 @@ set -e
set -x
BUILD_ROOT=$PWD
-SRC=$PWD/github/SPIRV-Tools
+SRC=/usr/local/google/home/sarahmashay/Desktop/SPIRV/spirv2
+
# Get clang-format-5.0.0.
# Once kokoro upgrades the Ubuntu VMs, we can use 'apt-get install clang-format'
@@ -30,10 +31,10 @@ tar xf clang-llvm.tar.xz
export PATH=$PWD/clang+llvm-5.0.0-linux-x86_64-ubuntu14.04/bin:$PATH
cd $SRC
-git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
-git clone --depth=1 https://github.com/google/googletest external/googletest
-git clone --depth=1 https://github.com/google/effcee external/effcee
-git clone --depth=1 https://github.com/google/re2 external/re2
+# git clone --depth=1 https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers
+# git clone --depth=1 https://github.com/google/googletest external/googletest
+# git clone --depth=1 https://github.com/google/effcee external/effcee
+# git clone --depth=1 https://github.com/google/re2 external/re2
curl -L http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format/clang-format-diff.py -o utils/clang-format-diff.py;
echo $(date): Check formatting...