From a79f5aa4710edd8dfa73364223b7d6f266d04587 Mon Sep 17 00:00:00 2001 From: wutianwei Date: Mon, 27 Mar 2017 09:16:31 +0800 Subject: change the package url We moved the master package repository from to . When we build the master ISO, we need download the package from new URL. Add md5 checksum after downloading package. Change-Id: Ia6d8a217569e6e8dc676b1290e583348a7b9c347 Signed-off-by: wutianwei (cherry picked from commit 8bc2146293461a619b5c5516a09d2915effbc19f) --- build.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index 3dfd54fd..ab81b8bc 100755 --- a/build.sh +++ b/build.sh @@ -21,7 +21,7 @@ WORK_PATH=$COMPASS_PATH PACKAGES="fuse fuseiso createrepo genisoimage curl" # PACKAGE_URL will be reset in Jenkins for different branch -export PACKAGE_URL=${PACKAGE_URL:-http://205.177.226.237:9999} +export PACKAGE_URL=${PACKAGE_URL:-http://205.177.226.237:9999/master} mkdir -p $WORK_DIR @@ -74,6 +74,12 @@ function download_url() fi curl --connect-timeout 10 -o $CACHE_DIR/$1 $2 + local_md5=`md5sum $CACHE_DIR/$1 | cut -d ' ' -f 1` + repo_md5=`cat $CACHE_DIR/$1.md5 | cut -d ' ' -f 1` + if [[ $local_md5 != $repo_md5 ]]; then + echo "ERROR, the md5sum don't match" + exit 1 + fi } function download_local() -- cgit 1.2.3-korg