Skip to content

Commit cd05eea

Browse files
aroundaboutimbajin
andauthored
chore(fix): add foreground process for hubble-1.0.0 image (#565)
* recover commit_id and change git clone depth --------- Co-authored-by: imbajin <[email protected]>
1 parent 087c002 commit cd05eea

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

hugegraph-client/assembly/travis/install-hugegraph-from-source.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ HUGEGRAPH_GIT_URL="https://github.com/apache/hugegraph.git"
2626
GIT_DIR=hugegraph
2727

2828
# download code and compile
29-
git clone --depth 100 ${HUGEGRAPH_GIT_URL} $GIT_DIR
29+
git clone --depth 500 ${HUGEGRAPH_GIT_URL} $GIT_DIR
3030
cd "${GIT_DIR}"
3131
git checkout "${COMMIT_ID}"
3232
mvn package -DskipTests -Dmaven.javadoc.skip=true -ntp

hugegraph-hubble/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ RUN set -x \
4444

4545

4646
EXPOSE 8088
47-
ENTRYPOINT ["./bin/start-hubble.sh", "-f true"]
47+
ENTRYPOINT ["sh", "-c", "./bin/start-hubble.sh && tail -f /dev/null"]

hugegraph-hubble/hubble-dist/assembly/travis/download-hugegraph.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ HUGEGRAPH_GIT_URL="https://github.com/apache/hugegraph.git"
2626
GIT_DIR=hugegraph
2727

2828
# download code and compile
29-
git clone --depth 100 $HUGEGRAPH_GIT_URL $GIT_DIR
29+
git clone --depth 500 $HUGEGRAPH_GIT_URL $GIT_DIR
3030
cd "${GIT_DIR}"
3131
git checkout "${COMMIT_ID}"
3232
mvn package -DskipTests -Dmaven.javadoc.skip=true -ntp

hugegraph-loader/assembly/travis/install-hugegraph-from-source.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fi
2424
COMMIT_ID=$1
2525
HUGEGRAPH_GIT_URL="https://github.com/apache/hugegraph.git"
2626

27-
git clone --depth 100 ${HUGEGRAPH_GIT_URL} hugegraph
27+
git clone --depth 500 ${HUGEGRAPH_GIT_URL} hugegraph
2828
cd hugegraph
2929
git checkout "${COMMIT_ID}"
3030
mvn package -DskipTests -Dmaven.javadoc.skip=true -ntp

hugegraph-tools/assembly/travis/install-hugegraph-from-source.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ HUGEGRAPH_GIT_URL="https://github.com/apache/hugegraph.git"
2525
GIT_DIR=hugegraph
2626

2727
# download code and compile
28-
git clone --depth 100 $HUGEGRAPH_GIT_URL $GIT_DIR
28+
git clone --depth 500 $HUGEGRAPH_GIT_URL $GIT_DIR
2929
cd "${GIT_DIR}"
3030
git checkout "${COMMIT_ID}"
3131
mvn package -DskipTests -Dmaven.javadoc.skip=true -ntp

0 commit comments

Comments
 (0)