1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
#!/bin/bash
#
# Script to install all necessary dependencies for running Closure tests,
# linting, formatting and compiling.
declare -r CLANG_VERSION="3.7.1"
declare -r CLANG_BUILD="clang+llvm-${CLANG_VERSION}-x86_64-linux-gnu-ubuntu-14.04"
declare -r CLANG_TAR="${CLANG_BUILD}.tar.xz"
declare -r CLANG_URL="http://llvm.org/releases/${CLANG_VERSION}/${CLANG_TAR}"
set -ex
cd ..
# Fetches Closure Compiler components from oss.sonatype.org
fetch () {
local name="$1"
local snapshots="https://oss.sonatype.org/content/repositories/snapshots"
local repo="$snapshots/com/google/javascript"
local dir="$repo/$name/1.0-SNAPSHOT"
local jar="$name-1.0-SNAPSHOT.jar"
local url=$(
curl -o - "$dir/" |
sed -n 's+.*<a href="\('"$dir/$name"'-[-.0-9]*\.jar\)".*+\1+p' |
head -n 1)
[ -n $url ]
wget -O "$jar" "$url"
}
# Install clang-format.
wget --quiet $CLANG_URL
tar xf $CLANG_TAR
mv $CLANG_BUILD clang
rm -f $CLANG_TAR
# Install closure compiler and linter.
fetch closure-compiler
fetch closure-compiler-linter
cd closure-library
# Installs node "devDependencies" found in package.json.
npm install
# Install Selenium.
./node_modules/protractor/bin/webdriver-manager update
|