Skip to content

Commit

Permalink
[GIE POM] set the default version of compiler as 0.0.1-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
shirly121 committed Nov 28, 2022
1 parent 2b7cf00 commit 920181d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
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
6 changes: 3 additions & 3 deletions interactive_engine/compiler/Makefile
Original file line number Diff line number Diff line change
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 920181d

Please sign in to comment.