This is an automated email from the ASF dual-hosted git repository. vgalaxies pushed a commit to branch codex/fix-https-build-script-urls in repository https://gitbox.apache.org/repos/asf/hugegraph-toolchain.git
commit 00882ac5a163b50c3ab54366f28a97df5c9628c8 Author: VGalaxies <[email protected]> AuthorDate: Thu Mar 19 21:53:32 2026 +0800 fix(build): use HTTPS download URLs in travis scripts --- hugegraph-loader/assembly/travis/install-hadoop.sh | 2 +- hugegraph-loader/assembly/travis/install-mysql.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hugegraph-loader/assembly/travis/install-hadoop.sh b/hugegraph-loader/assembly/travis/install-hadoop.sh index 54486816..cae279ae 100755 --- a/hugegraph-loader/assembly/travis/install-hadoop.sh +++ b/hugegraph-loader/assembly/travis/install-hadoop.sh @@ -17,7 +17,7 @@ # set -ev -sudo wget http://archive.apache.org/dist/hadoop/common/hadoop-2.8.5/hadoop-2.8.5.tar.gz +sudo wget https://archive.apache.org/dist/hadoop/common/hadoop-2.8.5/hadoop-2.8.5.tar.gz sudo tar -zxf hadoop-2.8.5.tar.gz -C /usr/local cd /usr/local diff --git a/hugegraph-loader/assembly/travis/install-mysql.sh b/hugegraph-loader/assembly/travis/install-mysql.sh index fcc12c1e..de1aef2f 100755 --- a/hugegraph-loader/assembly/travis/install-mysql.sh +++ b/hugegraph-loader/assembly/travis/install-mysql.sh @@ -32,7 +32,7 @@ docker run -p 3306:3306 --name "$1" -e MYSQL_ROOT_PASSWORD="$2" -d mysql:5.7 # Old Version -#MYSQL_DOWNLOAD_ADDRESS="http://dev.MySQL.com/get/Downloads" +#MYSQL_DOWNLOAD_ADDRESS="https://dev.mysql.com/get/Downloads" #MYSQL_VERSION="MySQL-5.7" #MYSQL_PACKAGE="mysql-5.7.11-Linux-glibc2.5-x86_64" #MYSQL_TAR="${MYSQL_PACKAGE}.tar.gz"
