Skip to content

Commit

Permalink
Rename directory
Browse files Browse the repository at this point in the history
  • Loading branch information
nck-mlcnv committed May 22, 2024
1 parent 5654ee5 commit f10c504
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ if [ -z "$GRAALVM_HOME" ]; then
exit 1
fi

SUITE=./graal-config/suite.yml
SUITE=./graalvm/suite.yml
while getopts ":hs:" opt; do
case ${opt} in
h)
echo "Usage: $0 [-h] [-s <SUITE>]"
echo " -h: Display this help message."
echo " -s <SUITE>: The path to the suite.yml file. Default: ./graal-config/suite.yml"
echo " -s <SUITE>: The path to the suite.yml file. Default: ./graalvm/suite.yml"
exit 0
;;
s)
Expand All @@ -32,4 +32,4 @@ done
sed 's/\\\\E//g' ./src/main/resources/META-INF/native-image/resource-config.json | sed 's/\\\\//g' > ./src/main/resources/META-INF/native-image/resource-config.json.tmp
mv ./src/main/resources/META-INF/native-image/resource-config.json.tmp ./src/main/resources/META-INF/native-image/resource-config.json

rm -r ./graal-config/results/
rm -r ./graalvm/results/
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions graal-config/suite.yml → graalvm/suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ connections:

storages:
- type: "rdf file"
path: "graal-config/results/some.ttl"
path: "graalvm/results/some.ttl"
- type: "csv file"
directory: "graal-config/results/"
directory: "graalvm/results/"
- type: "triplestore"
endpoint: "http://localhost:9999/blazegraph/sparql"
user: "user"
Expand Down Expand Up @@ -52,7 +52,7 @@ tasks:
- type: SPARQLProtocolWorker
number: 1
queries:
path: "./graal-config/queries.txt"
path: "./graalvm/queries.txt"
format: "separator"
separator: ";"
caching: true
Expand All @@ -70,7 +70,7 @@ tasks:
- type: "SPARQLProtocolWorker"
number: 1
queries:
path: "./graal-config/queries.txt"
path: "./graalvm/queries.txt"
timeout: 3m
connection: Blazegraph
completionTarget:
Expand All @@ -83,6 +83,6 @@ tasks:
completionTarget:
number: 1
queries:
path: "./graal-config/queries.txt"
path: "./graalvm/queries.txt"
timeout: 100s
acceptHeader: "application/sparql-results+json"

0 comments on commit f10c504

Please sign in to comment.