Skip to content

Commit

Permalink
[GIE] Make the version of GIE compiler consistent with the default va…
Browse files Browse the repository at this point in the history
…lue in interactive engine pom (#2249)

* [GIE POM] set the default version of compiler as 0.0.1-SNAPSHOT
  • Loading branch information
shirly121 committed Nov 29, 2022
1 parent 2b7cf00 commit 432e65c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -789,7 +789,7 @@ jobs:
cd interactive_engine/compiler && make build rpc.target=${RPC_TARGET}
cd ${GITHUB_WORKSPACE}
tar -czf artifacts.tar.gz interactive_engine/compiler/target/libs \
interactive_engine/compiler/target/compiler-1.0-SNAPSHOT.jar \
interactive_engine/compiler/target/compiler-0.0.1-SNAPSHOT.jar \
interactive_engine/compiler/conf \
interactive_engine/compiler/set_properties.sh \
interactive_engine/executor/ir/target/release/libir_core.so \
Expand Down
2 changes: 1 addition & 1 deletion charts/ir-standalone/templates/frontend/statefulset.yaml
Expand Up @@ -89,7 +89,7 @@ spec:
- -c
- |
cd /opt/GraphScope/interactive_engine/compiler && ./set_properties.sh
java -cp ".:./target/libs/*:./target/compiler-1.0-SNAPSHOT.jar" \
java -cp ".:./target/libs/*:./target/compiler-0.0.1-SNAPSHOT.jar" \
-Djna.library.path=../executor/ir/target/release \
-Dgraph.schema=/etc/graphscope-store/config/$GRAPH_SCHEMA com.alibaba.graphscope.gremlin.service.GraphServiceMain
{{- end }}
Expand Down
6 changes: 3 additions & 3 deletions interactive_engine/compiler/Makefile
Expand Up @@ -16,7 +16,7 @@ graph.schema:=

rpc.target:=start_rpc_server

target.revision:=1.0-SNAPSHOT
target.revision:=0.0.1-SNAPSHOT

ifeq ($(UNAME_S),Darwin)
ifeq ($(UNAME_M),arm64)
Expand Down Expand Up @@ -46,14 +46,14 @@ gremlin_test:

submit:
cd $(CUR_DIR) && $(java) \
-cp ".:./target/libs/*:./target/compiler-1.0-SNAPSHOT.jar" \
-cp ".:./target/libs/*:./target/compiler-0.0.1-SNAPSHOT.jar" \
-Djna.library.path=../executor/ir/target/release \
com.alibaba.graphscope.common.SubmitPlanServiceMain \
$(OPT)

run:
cd $(CUR_DIR) && $(java) \
-cp ".:./target/libs/*:./target/compiler-1.0-SNAPSHOT.jar" \
-cp ".:./target/libs/*:./target/compiler-0.0.1-SNAPSHOT.jar" \
-Djna.library.path=../executor/ir/target/release \
-Dgraph.schema=${graph.schema} \
-Dpegasus.hosts=${pegasus.hosts} \
Expand Down

0 comments on commit 432e65c

Please sign in to comment.