1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
#!/bin/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 -x -e
echo Given parameters: $1 $2 $3 $4 $5 $6
if [ -z "$1" ] || [ -z "$2" ]|| [ -z "$3" ] || [ -z "$4" ] || [ -z "$5" ] || [ -z "$6" ] || [ -z "$7" ]; then
echo "usage: $0 zipdir prefix buildnumber build_jdk7 build_jdk8 mac_sign_client mac_sign_user mac_sign_guid codesignbureau_credfile [nb_locales]"
echo ""
echo "zipdir is the dir which contains the zip/modulclusters
echo "prefix is the distro filename prefix, e.g. netbeans-hudson-trunk in netbeans-hudson-trunk-2464"
echo "buildnumber is the distro buildnumber, e.g. 2464 in netbeans-hudson-trunk-2464"
echo "build_jdk7 is 1 if bundle jdk7 are required and 0 if not"
echo "build_jdk8 is 1 if bundle jdk8 are required and 0 if not"
echo "mac_sign_client, mac_sign_user, mac_sign_guid, codesignbureau_credfile are required if the packages are to be signed, 0 if not"
echo "nb_locales is the string with the list of locales
exit 1
fi
work_dir=$1
prefix=$2
buildnumber=$3
build_jdk7=$4
build_jdk8=$5
build_jdk11=$6
binaryname=$7
mac_sign_idname=$8
version_number=$9
if [ -n "${10}" ] ; then
nb_locales=",${10}"
fi
basename=`dirname "$0"`
if [ -f "$basename"/build-private.sh ]; then
. "$basename"/build-private.sh
fi
cd "$basename"
chmod -R a+x *.sh
commonname=$work_dir/zip/moduleclusters/
if [[ ( -z $build_jdk7 || 0 -eq $build_jdk7 ) && ( -z $build_jdk8 || 0 -eq $build_jdk8 ) && ( -z $build_jdk11 || 0 -eq $build_jdk11 )]]; then
target="build-nb-dmg"
build_jdk7=0
build_jdk8=0
build_jdk11=0
else
target="build-jdk-bundle-dmg"
fi
if [ -z $en_build ] ; then
en_build=1
fi
#if [ -z $mac_sign_client || 0 -eq $mac_sign_client || -z $mac_sign_user || 0 -eq $mac_sign_user || -z $mac_sign_guid || 0 -eq $mac_sign_guid || -z $codesignbureau_credfile || 0 -eq $codesignbureau_credfile ] ; then
# mac_sign_client=0
# mac_sign_user=0
# mac_sign_guid=0
# codesignbureau_credfile=0
#else
# export CODESIGNBUREAU_CREDFILE=$codesignbureau_credfile
#fi
rm -rf "$basename"/dist_en
ant -f $basename/build.xml $target -Dlocales=$nb_locales -Dcommon.name=$commonname -Dnb.binary.name=$binaryname -Dmac.sign.idname="$mac_sign_idname" -Dprefix=$prefix -Dbuildnumber=$buildnumber -Dversionnumber=$version_number -Dmac.sign.client=$mac_sign_client -Dmac.sign.user=$mac_sign_user -Dmac.sign.guid=$mac_sign_guid -Dbuild.jdk7=$build_jdk7 -Dbuild.jdk8=$build_jdk8 -Dbuild.jdk11=$build_jdk11 -Dgf_builds_host=$GLASSFISH_BUILDS_HOST -Djre_builds_host=$JRE_BUILDS_HOST -Djdk_builds_host=$JDK_BUILDS_HOST -Djre_builds_path=$JRE_BUILDS_PATH -Djdk7_builds_path=$JDK7_BUILDS_PATH -Djdk8_builds_path=$JDK8_BUILDS_PATH -Djdk11_builds_path=$JDK11_BUILDS_PATH -Dbinary_cache_host=$BINARY_CACHE_HOST
mv -f "$basename"/dist "$basename"/dist_en
|