Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
relu91 committed Sep 29, 2018
2 parents 8bea4ba + 6e2e690 commit 00cbcf3
Show file tree
Hide file tree
Showing 313 changed files with 14,071 additions and 19,337 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
engine/*.jpar
engine/sepa.jks

# timing created by engine
engine/logs

# timing created by maven tests
logs

# Created by https://www.gitignore.io/api/java,maven,eclipse,intellij

### Eclipse ###
Expand Down
39 changes: 38 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ cache:
- "$HOME/.m2"
services:
- docker
notifications:
email:
- [email protected]
- [email protected]
jobs:
include:
- stage: test
Expand All @@ -15,7 +19,40 @@ jobs:
- mvn package
- cd engine/target
- mv endpoints/endpoint-blazegraph.jpar endpoint.jpar
- java -jar engine-0-SNAPSHOT.jar > log.txt &
- echo launching engine with this configuration
- cat engine.jpar
- java -jar engine-0-SNAPSHOT.jar -engine=engine.jpar > log.txt &
- sleep 30
- cd ../..
script:
- mvn verify
after_failure:
- "cat engine/target/log.txt"
- stage: integrationSecure
before_script:
- docker run --name blazegraph -d -p 9999:9999 nawer/blazegraph:2.1.1
- sleep 30
- wget http://localhost:9999/blazegraph/namespace/kb/sparql
- mvn package
- cd engine/target
- mv endpoints/endpoint-blazegraph.jpar endpoint.jpar
- java -jar engine-0-SNAPSHOT.jar -engine=engine-secure.jpar > log.txt &
- cat engine-secure.jpar
- sleep 30
- cd ../..
script:
- mvn verify -Dsecure=true
after_failure:
- "cat engine/target/log.txt"
- stage: integration-virtuoso
before_script:
- docker run --name my-virtuoso -p 8890:8890 -p 1111:1111 -e DBA_PASSWORD=myDbaPassword -e SPARQL_UPDATE=true -e DEFAULT_GRAPH=http://www.example.com/my-graph -d tenforce/virtuoso
- sleep 30
- wget http://localhost:8890/sparql
- mvn package
- cd engine/target
- mv endpoints/endpoint-virtuoso.jpar endpoint.jpar
- java -jar engine-0-SNAPSHOT.jar -engine=engine.jpar > log.txt &
- sleep 30
- cd ../..
script:
Expand Down
1 change: 0 additions & 1 deletion WebThings/defaults.jpar

This file was deleted.

85 changes: 0 additions & 85 deletions WebThings/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 00cbcf3

Please sign in to comment.