You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by ji...@apache.org on 2023/04/22 23:40:31 UTC

[doris] branch master updated: [scirpte](download) add 1.2.4 download script (#18932)

This is an automated email from the ASF dual-hosted git repository.

jiafengzheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new e7ad536a71 [scirpte](download) add 1.2.4 download script (#18932)
e7ad536a71 is described below

commit e7ad536a712655b7cecd3f49ce60e5885b7da744
Author: Mingyu Chen <mo...@163.com>
AuthorDate: Sun Apr 23 07:40:19 2023 +0800

    [scirpte](download) add 1.2.4 download script (#18932)
---
 dist/download_scripts/1.2.4/download_arm_apache.sh | 36 ++++++++++++++++++++++
 .../1.2.4/download_arm_tsinghua.sh                 | 36 ++++++++++++++++++++++
 dist/download_scripts/1.2.4/download_x64_apache.sh | 36 ++++++++++++++++++++++
 .../1.2.4/download_x64_noavx2_apache.sh            | 36 ++++++++++++++++++++++
 .../1.2.4/download_x64_noavx2_tsinghua.sh          | 36 ++++++++++++++++++++++
 .../1.2.4/download_x64_tsinghua.sh                 | 36 ++++++++++++++++++++++
 6 files changed, 216 insertions(+)

diff --git a/dist/download_scripts/1.2.4/download_arm_apache.sh b/dist/download_scripts/1.2.4/download_arm_apache.sh
new file mode 100755
index 0000000000..77572d3db0
--- /dev/null
+++ b/dist/download_scripts/1.2.4/download_arm_apache.sh
@@ -0,0 +1,36 @@
+#!/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.
+
+set -eo pipefail
+
+FE="apache-doris-fe-1.2.4-bin-arm"
+BE="apache-doris-be-1.2.4-bin-arm"
+DEPS="apache-doris-dependencies-1.2.4-bin-arm"
+DOWNLOAD_LINK_PREFIX="https://dlcdn.apache.org/doris/1.2/1.2.4-rc01/"
+DOWNLOAD_DIR="apache-doris-1.2.4-bin"
+
+# Check and download download_base.sh
+DOWNLOAD_BASE_SCRIPTS="download_base.sh"
+
+if [[ ! -f "${DOWNLOAD_BASE_SCRIPTS}" ]]; then
+    curl -O https://raw.githubusercontent.com/apache/doris/master/dist/download_scripts/download_base.sh &&
+        chmod a+x "${DOWNLOAD_BASE_SCRIPTS}"
+fi
+
+# Begin to download
+./"${DOWNLOAD_BASE_SCRIPTS}" "${FE}" "${BE}" "${DEPS}" "${DOWNLOAD_LINK_PREFIX}" "${DOWNLOAD_DIR}"
diff --git a/dist/download_scripts/1.2.4/download_arm_tsinghua.sh b/dist/download_scripts/1.2.4/download_arm_tsinghua.sh
new file mode 100755
index 0000000000..8124842321
--- /dev/null
+++ b/dist/download_scripts/1.2.4/download_arm_tsinghua.sh
@@ -0,0 +1,36 @@
+#!/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.
+
+set -eo pipefail
+
+FE="apache-doris-fe-1.2.4-bin-arm"
+BE="apache-doris-be-1.2.4-bin-arm"
+DEPS="apache-doris-dependencies-1.2.4-bin-arm"
+DOWNLOAD_LINK_PREFIX="https://mirrors.tuna.tsinghua.edu.cn/apache/doris/1.2/1.2.4-rc01/"
+DOWNLOAD_DIR="apache-doris-1.2.4-bin"
+
+# Check and download download_base.sh
+DOWNLOAD_BASE_SCRIPTS="download_base.sh"
+
+if [[ ! -f "${DOWNLOAD_BASE_SCRIPTS}" ]]; then
+    curl -O https://raw.githubusercontent.com/apache/doris/master/dist/download_scripts/download_base.sh &&
+        chmod a+x "${DOWNLOAD_BASE_SCRIPTS}"
+fi
+
+# Begin to download
+./"${DOWNLOAD_BASE_SCRIPTS}" "${FE}" "${BE}" "${DEPS}" "${DOWNLOAD_LINK_PREFIX}" "${DOWNLOAD_DIR}"
diff --git a/dist/download_scripts/1.2.4/download_x64_apache.sh b/dist/download_scripts/1.2.4/download_x64_apache.sh
new file mode 100755
index 0000000000..1154ad0e78
--- /dev/null
+++ b/dist/download_scripts/1.2.4/download_x64_apache.sh
@@ -0,0 +1,36 @@
+#!/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.
+
+set -eo pipefail
+
+FE="apache-doris-fe-1.2.4-bin-x86_64"
+BE="apache-doris-be-1.2.4-bin-x86_64"
+DEPS="apache-doris-dependencies-1.2.4-bin-x86_64"
+DOWNLOAD_LINK_PREFIX="https://dlcdn.apache.org/doris/1.2/1.2.4-rc01/"
+DOWNLOAD_DIR="apache-doris-1.2.4-bin"
+
+# Check and download download_base.sh
+DOWNLOAD_BASE_SCRIPTS="download_base.sh"
+
+if [[ ! -f "${DOWNLOAD_BASE_SCRIPTS}" ]]; then
+    curl -O https://raw.githubusercontent.com/apache/doris/master/dist/download_scripts/download_base.sh &&
+        chmod a+x "${DOWNLOAD_BASE_SCRIPTS}"
+fi
+
+# Begin to download
+./"${DOWNLOAD_BASE_SCRIPTS}" "${FE}" "${BE}" "${DEPS}" "${DOWNLOAD_LINK_PREFIX}" "${DOWNLOAD_DIR}"
diff --git a/dist/download_scripts/1.2.4/download_x64_noavx2_apache.sh b/dist/download_scripts/1.2.4/download_x64_noavx2_apache.sh
new file mode 100755
index 0000000000..49fd1b7a02
--- /dev/null
+++ b/dist/download_scripts/1.2.4/download_x64_noavx2_apache.sh
@@ -0,0 +1,36 @@
+#!/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.
+
+set -eo pipefail
+
+FE="apache-doris-fe-1.2.4-bin-x86_64"
+BE="apache-doris-be-1.2.4-bin-x86_64-noavx2"
+DEPS="apache-doris-dependencies-1.2.4-bin-x86_64"
+DOWNLOAD_LINK_PREFIX="https://dlcdn.apache.org/doris/1.2/1.2.4-rc01/"
+DOWNLOAD_DIR="apache-doris-1.2.4-bin"
+
+# Check and download download_base.sh
+DOWNLOAD_BASE_SCRIPTS="download_base.sh"
+
+if [[ ! -f "${DOWNLOAD_BASE_SCRIPTS}" ]]; then
+    curl -O https://raw.githubusercontent.com/apache/doris/master/dist/download_scripts/download_base.sh &&
+        chmod a+x "${DOWNLOAD_BASE_SCRIPTS}"
+fi
+
+# Begin to download
+./"${DOWNLOAD_BASE_SCRIPTS}" "${FE}" "${BE}" "${DEPS}" "${DOWNLOAD_LINK_PREFIX}" "${DOWNLOAD_DIR}"
diff --git a/dist/download_scripts/1.2.4/download_x64_noavx2_tsinghua.sh b/dist/download_scripts/1.2.4/download_x64_noavx2_tsinghua.sh
new file mode 100755
index 0000000000..d27018360d
--- /dev/null
+++ b/dist/download_scripts/1.2.4/download_x64_noavx2_tsinghua.sh
@@ -0,0 +1,36 @@
+#!/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.
+
+set -eo pipefail
+
+FE="apache-doris-fe-1.2.4-bin-x86_64"
+BE="apache-doris-be-1.2.4-bin-x86_64-noavx2"
+DEPS="apache-doris-dependencies-1.2.4-bin-x86_64"
+DOWNLOAD_LINK_PREFIX="https://mirrors.tuna.tsinghua.edu.cn/apache/doris/1.2/1.2.4-rc01/"
+DOWNLOAD_DIR="apache-doris-1.2.4-bin"
+
+# Check and download download_base.sh
+DOWNLOAD_BASE_SCRIPTS="download_base.sh"
+
+if [[ ! -f "${DOWNLOAD_BASE_SCRIPTS}" ]]; then
+    curl -O https://raw.githubusercontent.com/apache/doris/master/dist/download_scripts/download_base.sh &&
+        chmod a+x "${DOWNLOAD_BASE_SCRIPTS}"
+fi
+
+# Begin to download
+./"${DOWNLOAD_BASE_SCRIPTS}" "${FE}" "${BE}" "${DEPS}" "${DOWNLOAD_LINK_PREFIX}" "${DOWNLOAD_DIR}"
diff --git a/dist/download_scripts/1.2.4/download_x64_tsinghua.sh b/dist/download_scripts/1.2.4/download_x64_tsinghua.sh
new file mode 100755
index 0000000000..64283a8d64
--- /dev/null
+++ b/dist/download_scripts/1.2.4/download_x64_tsinghua.sh
@@ -0,0 +1,36 @@
+#!/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.
+
+set -eo pipefail
+
+FE="apache-doris-fe-1.2.4-bin-x86_64"
+BE="apache-doris-be-1.2.4-bin-x86_64"
+DEPS="apache-doris-dependencies-1.2.4-bin-x86_64"
+DOWNLOAD_LINK_PREFIX="https://mirrors.tuna.tsinghua.edu.cn/apache/doris/1.2/1.2.4-rc01/"
+DOWNLOAD_DIR="apache-doris-1.2.4-bin"
+
+# Check and download download_base.sh
+DOWNLOAD_BASE_SCRIPTS="download_base.sh"
+
+if [[ ! -f "${DOWNLOAD_BASE_SCRIPTS}" ]]; then
+    curl -O https://raw.githubusercontent.com/apache/doris/master/dist/download_scripts/download_base.sh &&
+        chmod a+x "${DOWNLOAD_BASE_SCRIPTS}"
+fi
+
+# Begin to download
+./"${DOWNLOAD_BASE_SCRIPTS}" "${FE}" "${BE}" "${DEPS}" "${DOWNLOAD_LINK_PREFIX}" "${DOWNLOAD_DIR}"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org