forked from RDFLib/rdflib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make travis fuseki install more failsafe, fixes RDFLib#475
- Loading branch information
Showing
2 changed files
with
18 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
set -v | ||
|
||
if wget http://archive.eu.apache.org/dist/jena/binaries/jena-fuseki1-1.1.2-distribution-brokenURITest.tar.gz && | ||
tar -zxf jena-fuseki*-distribution.tar.gz && | ||
mv jena-fuseki*/ fuseki && | ||
cd fuseki ; then | ||
# normal SPARQLStore & Dataset tests: | ||
bash fuseki-server --port 3030 --debug --update --mem /db &>fuseki.log & | ||
# SPARQLUpdateStore tests & ConjunctiveGraph endpoint behavior: | ||
bash fuseki-server --port 3031 --debug --update --memTDB --set tdb:unionDefaultGraph=true /db &>fuseki.log & | ||
sleep 2 | ||
cd .. | ||
else | ||
echo "fuseki install failed, skipping... please check URI" >&2 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters