make.sh 4.1 KB
Newer Older
1 2
#!/bin/bash
# build properties
M
maoliang.ml 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#
# Copyright (c) 2019 Alibaba Group Holding Limited. All Rights Reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Alibaba designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#

if [ ! -f "dragonwell_version" ]; then
	echo "File 'dragonwell_version' doesn't exist!"
	exit 1;
27
fi
M
maoliang.ml 已提交
28
source dragonwell_version
29

M
maoliang.ml 已提交
30 31

if [ $# -lt 1 ]; then
32
  echo "USAGE: $0 release/debug/fastdebug"
33 34 35 36 37 38 39 40 41 42 43 44 45 46
fi

LC_ALL=C
BUILD_MODE=$1

case "$BUILD_MODE" in
    release)
        DEBUG_LEVEL="release"
        JDK_IMAGES_DIR=`pwd`/build/linux-x86_64-normal-server-release/images
    ;;
    debug)
        DEBUG_LEVEL="slowdebug"
        JDK_IMAGES_DIR=`pwd`/build/linux-x86_64-normal-server-slowdebug/images
    ;;
47 48 49 50
    fastdebug)
	DEBUG_LEVEL="fastdebug"
	JDK_IMAGES_DIR=`pwd`/build/linux-x86_64-normal-server-fastdebug/images
    ;;
51
    *)
52
        echo "Argument must be release or debug or fastdebug!"
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
        exit 1
    ;;
esac

NEW_JAVA_HOME=$JDK_IMAGES_DIR/j2sdk-image
NEW_JRE_HOME=$JDK_IMAGES_DIR/j2re-image

\rm -rf build

if [ -z "$BUILD_NUMBER" ]; then
  BUILD_INDEX=b00
else
  BUILD_INDEX=b$BUILD_NUMBER
fi

68
DISTRO_VERSION=${DRAGONWELL_VERSION}
69

M
maoliang.ml 已提交
70 71
shift

72
bash ./configure --with-milestone=fcs \
73
                 --with-build-number=${BUILD_INDEX} \
74 75
                 --with-user-release-suffix="" \
                 --enable-unlimited-crypto \
F
fangxi.yfx 已提交
76
                 --with-cacerts-file=`pwd`/common/security/cacerts \
77 78
                 --with-jvm-variants=server \
                 --with-debug-level=$DEBUG_LEVEL \
M
maoliang.ml 已提交
79
                 --with-zlib=system $*
80
make clean
81 82 83 84

# The default DISTRO_VERSION in spec.gmk.in does not contain the customer defined build number.
# Hack DISTRO_VERSION to introduce the number.
make LOG=debug DISTRO_VERSION=${DISTRO_VERSION} images
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115

# Sanity tests
JAVA_EXES=("$NEW_JAVA_HOME/bin/java" "$NEW_JAVA_HOME/jre/bin/java" "$NEW_JRE_HOME/bin/java")
VERSION_OPTS=("-version" "-Xinternalversion" "-fullversion")
for exe in "${JAVA_EXES[@]}"; do
  for opt in "${VERSION_OPTS[@]}"; do
    $exe $opt > /dev/null 2>&1
    if [ 0 -ne $? ]; then
      echo "Failed: $exe $opt"
      exit 128
    fi
  done
done

# Keep old output
$NEW_JAVA_HOME/bin/java -version

cat > /tmp/systemProperty.java << EOF
public class systemProperty {
    public static void main(String[] args) {
        System.getProperties().list(System.out);
    }
}
EOF

$NEW_JAVA_HOME/bin/javac /tmp/systemProperty.java
$NEW_JAVA_HOME/bin/java -cp /tmp/ systemProperty > /tmp/systemProperty.out

EXPECTED_PATTERN=('^java\.vm\.vendor\=.*Alibaba.*$'
                '^java\.vendor\.url\=http\:\/\/www\.alibabagroup\.com$'
                '^java\.vendor\=Alibaba$'
116
                '^java\.vendor\.url\.bug\=mailto\:dragonwell_use@googlegroups\.com$')
117 118 119 120 121 122 123 124 125 126 127
RET=0
for p in ${EXPECTED_PATTERN[*]}
do
    cat /tmp/systemProperty.out | grep "$p"
    if [ 0 != $? ]; then RET=1; fi
done

\rm -f /tmp/systemProperty*

# check version string
$NEW_JAVA_HOME/bin/java -version > /tmp/version.out 2>&1
128
grep "^OpenJDK Runtime" /tmp/version.out | grep "(Alibaba Dragonwell $DISTRO_VERSION)"
129
if [ 0 != $? ]; then RET=1; fi
130
grep "^OpenJDK .*VM" /tmp/version.out | grep "(Alibaba Dragonwell $DISTRO_VERSION)"
131 132 133 134 135 136 137
if [ 0 != $? ]; then RET=1; fi
\rm -f /tmp/version.out

ldd $NEW_JAVA_HOME/jre/lib/amd64/libzip.so|grep libz
if [ 0 != $? ]; then RET=1; fi

exit $RET