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

Commit 7b0c55c

Browse files
committed
Pickling: download quasiquotes jar for testing
1 parent e12b80f commit 7b0c55c

File tree

1 file changed

+10
-0
lines changed
  • job/scala-pickling-210

1 file changed

+10
-0
lines changed

job/scala-pickling-210/run

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ git clone git@github.com:scala/pickling.git pickling
1313
cd pickling
1414
git checkout 0.9.x
1515

16+
local jar="quasiquotes_2.10-2.0.0.jar"
17+
local url="http://search.maven.org/remotecontent?filepath=org/scalamacros/quasiquotes_2.10/2.0.0/quasiquotes_2.10-2.0.0.jar"
18+
19+
http_code=$(curl --fail --silent --output "$jar" "$url")
20+
if (( $? != 0 )); then
21+
echo "Error downloading $jar: response code: $http_code"
22+
echo "$url"
23+
exit 1
24+
fi
25+
1626
# STEP 2: RUN THE TESTS
1727
runSbt "project scala-pickling" test
1828

0 commit comments

Comments
 (0)