Skip to content
This repository was archived by the owner on Feb 23, 2018. It is now read-only.

Pickling: download quasiquotes jar for testing #123

Merged
merged 1 commit into from
Aug 6, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions job/scala-pickling-210/run
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ git clone git@github.com:scala/pickling.git pickling
cd pickling
git checkout 0.9.x

local jar="quasiquotes_2.10-2.0.0.jar"
local url="http://search.maven.org/remotecontent?filepath=org/scalamacros/quasiquotes_2.10/2.0.0/quasiquotes_2.10-2.0.0.jar"

http_code=$(curl --fail --silent --output "$jar" "$url")
if (( $? != 0 )); then
echo "Error downloading $jar: response code: $http_code"
echo "$url"
exit 1
fi

# STEP 2: RUN THE TESTS
runSbt "project scala-pickling" test

Expand Down