From ff8a6ead423810d9fe16c6179c20e24dffc6f9e2 Mon Sep 17 00:00:00 2001 From: Chuansheng Lu Date: Thu, 14 Mar 2019 15:30:01 +0800 Subject: [PATCH] [Misc] Update Dragonwell version to '8.0-preview' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: Update Dragonwell version to 8.0-preview Test Plan: built-in sanity test Reviewers: 麦庶 Reviewed By: 麦庶 Differential Revision: https://aone.alibaba-inc.com/code/D853999 --- make.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/make.sh b/make.sh index 62b8ae2..62224bd 100755 --- a/make.sh +++ b/make.sh @@ -2,25 +2,23 @@ # build properties JDK_UPDATE_VERSION=202 DISTRO_NAME=Dragonwell -DISTRO_VERSION=8.0 +DISTRO_VERSION=8.0-preview -if [ $# != 1 ]; then +if [ $# != 1 ]; then echo "USAGE: $0 release/debug" fi ps -e | grep docker if [ $? -eq 0 ]; then - echo "We will build AJDK in Docker!" + echo "We will build Dragonwell in Docker!" sudo docker pull reg.docker.alibaba-inc.com/ajdk/8-dev.alios5 docker run -u admin -i --rm -e BUILD_NUMBER=$BUILD_NUMBER -v `pwd`:`pwd` -w `pwd` \ --entrypoint=bash reg.docker.alibaba-inc.com/ajdk/8-dev.alios5 `pwd`/make.sh $1 exit $? fi - source /vmfarm/tools/env.sh LC_ALL=C - BUILD_MODE=$1 case "$BUILD_MODE" in -- GitLab