This is an automated email from the ASF dual-hosted git repository. jermy pushed a commit to branch deploy-release.sh in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-doc.git
commit 45bb83cff54a519ba2762b9be2014eeb2f0e5097 Author: jermy <[email protected]> AuthorDate: Sun Feb 25 20:00:20 2024 +0800 add dist/deploy-release.sh --- dist/deploy-release.sh | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/dist/deploy-release.sh b/dist/deploy-release.sh new file mode 100755 index 00000000..88058c5b --- /dev/null +++ b/dist/deploy-release.sh @@ -0,0 +1,51 @@ +#!/usr/bin/env bash +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Download hugegraph-server and hugegraph-toolcahain, then start them: +# hugegraph-server and hugegraph-hubble + +set -e + +RELEASE_VERSION=$1 # like 1.2.0 +RELEASE_VERSION=${RELEASE_VERSION:?"Please input the release version, like 1.2.0"} + +DOWNLOAD_URL_PREFIX="https://downloads.apache.org/incubator/hugegraph" +SERVER_TAR="apache-hugegraph-incubating-${RELEASE_VERSION}.tar.gz" +TOOLCHAIN_TAR="apache-hugegraph-toolchain-incubating-${RELEASE_VERSION}.tar.gz" + +echo "download hugegraph tars from $DOWNLOAD_URL_PREFIX..." +if [[ ! -f "${SERVER_TAR}" ]]; then + wget "${DOWNLOAD_URL_PREFIX}/${RELEASE_VERSION}/${SERVER_TAR}" + tar -xzvf "${SERVER_TAR}" +fi +if [[ ! -f "${TOOLCHAIN_TAR}" ]]; then + wget "${DOWNLOAD_URL_PREFIX}/${RELEASE_VERSION}/${TOOLCHAIN_TAR}" + tar -xzvf ${TOOLCHAIN_TAR} +fi + +echo "start hugegraph-server..." +cd $(echo "./*hugegraph-incubating*${RELEASE_VERSION}") +bin/stop-hugegraph.sh +bin/init-store.sh +sleep 3 +bin/start-hugegraph.sh +cd .. + +echo "start hugegraph-hubble..." +cd $(echo "./*toolchain*${RELEASE_VERSION}/*hubble*${RELEASE_VERSION}") +bin/stop-hubble.sh +bin/start-hubble.sh
