summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2020-11-30 10:23:24 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2020-12-03 12:23:35 +0000
commit35f344aad1d66ae1df371b854237728b6f3a76e1 (patch)
tree9aec56e9de6b9944e5bef8c52b84e3afce380f75
parenta0a502483463e11556ee8d74202b0c6161829ae9 (diff)
tcwg-llvm-testsuite.sh: Remove use of llvm-reference and update GIT URLs.
llvw-reference is now obsolete, and the lnt and test-suite repos have moved to new URLs. Change-Id: I851e9e824b3e79492a928f75a35b32233c1935b9
-rwxr-xr-xtcwg-llvm-testsuite.sh16
1 files changed, 4 insertions, 12 deletions
diff --git a/tcwg-llvm-testsuite.sh b/tcwg-llvm-testsuite.sh
index e1af1d93..5bd51e81 100755
--- a/tcwg-llvm-testsuite.sh
+++ b/tcwg-llvm-testsuite.sh
@@ -51,9 +51,6 @@ while [ "$#" -gt 0 ]; do
esac
done
-# Dirs
-REFDIR="$HOME/llvm-reference"
-
# Dump
echo "WORKSPACE = $WORKSPACE"
echo "REFDIR = $REFDIR"
@@ -67,15 +64,10 @@ LOGBASE="$WORKSPACE/tcwg-llvm"
LOGEXT="txt"
# Checkout
-{
- flock -s 9
- git clone http://llvm.org/git/test-suite.git \
- --reference "$REFDIR/test-suite" \
- "$WORKSPACE/test-suite" |& tee "$LOGBASE-clone.$LOGEXT"
- git clone http://llvm.org/git/lnt.git \
- --reference "$REFDIR/lnt" \
- "$WORKSPACE/lnt" |& tee -a "$LOGBASE-clone.$LOGEXT"
-} 9>"$REFDIR.lock"
+git clone https://github.com/llvm/llvm-test-suite.git \
+ "$WORKSPACE/test-suite" |& tee "$LOGBASE-clone.$LOGEXT"
+git clone https://github.com/llvm/llvm-lnt.git \
+ "$WORKSPACE/lnt" |& tee -a "$LOGBASE-clone.$LOGEXT"
# Prepare
python=$(which python2)