Skip to content

Commit

Permalink
export.sh: Fetch sources from GitHub instead of SVN
Browse files Browse the repository at this point in the history
Reviewers: hansw, jdoerfert

Subscribers: sylvestre.ledru, mgorny, hans, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D70460
  • Loading branch information
tstellar committed Dec 7, 2019
1 parent 198fbcb commit edf6717
Showing 1 changed file with 24 additions and 11 deletions.
35 changes: 24 additions & 11 deletions llvm/utils/release/export.sh
Expand Up @@ -13,14 +13,13 @@

set -e

projects="llvm cfe test-suite compiler-rt libcxx libcxxabi clang-tools-extra polly lldb lld openmp libunwind"
base_url="https://llvm.org/svn/llvm-project"
projects="llvm clang test-suite compiler-rt libcxx libcxxabi clang-tools-extra polly lldb lld openmp libunwind"

release=""
rc=""

usage() {
echo "Export the SVN sources and build tarballs from them"
echo "Export the Git sources and build tarballs from them"
echo "usage: `basename $0`"
echo " "
echo " -release <num> The version number of the release"
Expand All @@ -30,20 +29,34 @@ usage() {

export_sources() {
release_no_dot=`echo $release | sed -e 's,\.,,g'`
tag_dir="tags/RELEASE_$release_no_dot/$rc"
tag="llvmorg-$release"

if [ "$rc" = "final" ]; then
rc=""
else
tag="$tag-$rc"
fi

for proj in $projects; do
echo "Exporting $proj ..."
svn export \
$base_url/$proj/$tag_dir \
$proj-$release$rc.src
llvm_src_dir=llvm-project-$release$rc
mkdir -p $llvm_src_dir

echo $tag
echo "Fetching LLVM project source ..."
curl -L https://github.com/llvm/llvm-project/archive/$tag.tar.gz | \
tar -C $llvm_src_dir --strip-components=1 -xzf -

echo "Creating tarball for llvm-project ..."
tar -cJf llvm-project-$release$rc.tar.xz $llvm_src_dir

echo "Creating tarball ..."
tar cfJ $proj-$release$rc.src.tar.xz $proj-$release$rc.src
echo "Fetching LLVM test-suite source ..."
mkdir -p $llvm_src_dir/test-suite
curl -L https://github.com/llvm/test-suite/archive/$tag.tar.gz | \
tar -C $llvm_src_dir/test-suite --strip-components=1 -xzf -

for proj in $projects; do
echo "Creating tarball for $proj ..."
mv $llvm_src_dir/$proj $llvm_src_dir/$proj-$release$rc.src
tar -C $llvm_src_dir -cJf $proj-$release$rc.src.tar.xz $proj-$release$rc.src
done
}

Expand Down

0 comments on commit edf6717

Please sign in to comment.