1 #
   2 # CDDL HEADER START
   3 #
   4 # The contents of this file are subject to the terms of the
   5 # Common Development and Distribution License (the "License").
   6 # You may not use this file except in compliance with the License.
   7 #
   8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9 # or http://www.opensolaris.org/os/licensing.
  10 # See the License for the specific language governing permissions
  11 # and limitations under the License.
  12 #
  13 # When distributing Covered Code, include this CDDL HEADER in each
  14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15 # If applicable, add the following below this CDDL HEADER, with the
  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
  22 # Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
  23 # Copyright 2012 Joshua M. Clulow <josh@sysmgr.org>
  24 # Copyright 2016, OmniTI Computer Consulting, Inc. All rights reserved.
  25 #
  26 
  27 # Configuration variables for the runtime environment of the nightly
  28 # build script and other tools for construction and packaging of
  29 # releases.
  30 # This example is suitable for building an illumos workspace, which
  31 # will contain the resulting archives. It is based off the onnv
  32 # release. It sets NIGHTLY_OPTIONS to make nightly do:
  33 #       DEBUG build only (-D, -F)
  34 #       do not bringover (aka. pull or clone) from the parent (-n)
  35 #       runs 'make check' (-C)
  36 #       checks for new interfaces in libraries (-A)
  37 #       runs lint in usr/src (-l plus the LINTDIRS variable)
  38 #       sends mail on completion (-m and the MAILTO variable)
  39 #       creates packages for PIT/RE (-p)
  40 #       checks for changes in ELF runpaths (-r)
  41 #       build and use this workspace's tools in $SRC/tools (-t)
  42 #
  43 # - This file is sourced by "bldenv.sh" and "nightly.sh" and should not 
  44 #   be executed directly.
  45 # - This script is only interpreted by ksh93 and explicitly allows the
  46 #   use of ksh93 language extensions.
  47 #
  48 export NIGHTLY_OPTIONS='-FnCDAlmprt'
  49 
  50 #
  51 # -- PLEASE READ THIS --
  52 #
  53 # The variables  GATE and CODEMGR_WS must always be customised to
  54 # match your workspace/gate location!!
  55 #
  56 # -- PLEASE READ THIS --
  57 #
  58 
  59 # This is a variable for the rest of the script - GATE doesn't matter to
  60 # nightly itself
  61 export GATE='testws'
  62 
  63 # CODEMGR_WS - where is your workspace at (or what should nightly name it)
  64 export CODEMGR_WS="$HOME/ws/$GATE"
  65 
  66 # Maximum number of dmake jobs.  The recommended number is 2 + NCPUS,
  67 # where NCPUS is the number of logical CPUs on your build system.
  68 function maxjobs
  69 {
  70         nameref maxjobs=$1
  71         integer ncpu
  72         integer -r min_mem_per_job=512 # minimum amount of memory for a job
  73 
  74         ncpu=$(builtin getconf ; getconf 'NPROCESSORS_ONLN')
  75         (( maxjobs=ncpu + 2 ))
  76         
  77         # Throttle number of parallel jobs launched by dmake to a value which
  78         # gurantees that all jobs have enough memory. This was added to avoid
  79         # excessive paging/swapping in cases of virtual machine installations
  80         # which have lots of CPUs but not enough memory assigned to handle
  81         # that many parallel jobs
  82         if [[ $(/usr/sbin/prtconf 2>'/dev/null') == ~(E)Memory\ size:\ ([[:digit:]]+)\ Megabytes ]] ; then
  83                 integer max_jobs_per_memory # parallel jobs which fit into physical memory
  84                 integer physical_memory # physical memory installed
  85 
  86                 # The array ".sh.match" contains the contents of capturing
  87                 # brackets in the last regex, .sh.match[1] will contain
  88                 # the value matched by ([[:digit:]]+), i.e. the amount of
  89                 # memory installed
  90                 physical_memory="10#${.sh.match[1]}"
  91                 
  92                 ((
  93                         max_jobs_per_memory=round(physical_memory/min_mem_per_job) ,
  94                         maxjobs=fmax(2, fmin(maxjobs, max_jobs_per_memory))
  95                 ))
  96         fi
  97 
  98         return 0
  99 }
 100 
 101 maxjobs DMAKE_MAX_JOBS # "DMAKE_MAX_JOBS" passed as ksh(1) name reference
 102 export DMAKE_MAX_JOBS
 103 
 104 # path to onbld tool binaries
 105 ONBLD_BIN='/opt/onbld/bin'
 106 
 107 # PARENT_WS is used to determine the parent of this workspace. This is
 108 # for the options that deal with the parent workspace (such as where the
 109 # proto area will go).
 110 export PARENT_WS=''
 111 
 112 # The bringover, if any, is done as STAFFER.
 113 # Set STAFFER to your own login as gatekeeper or developer
 114 # The point is to use group "staff" and avoid referencing the parent
 115 # workspace as root.
 116 # Some scripts optionally send mail messages to MAILTO.
 117 #
 118 export STAFFER="$LOGNAME"
 119 export MAILTO="$STAFFER"
 120 
 121 # If you wish the mail messages to be From: an arbitrary address, export
 122 # MAILFROM.
 123 #export MAILFROM="user@example.com"
 124 
 125 # The project (see project(4)) under which to run this build.  If not
 126 # specified, the build is simply run in a new task in the current project.
 127 export BUILD_PROJECT=''
 128 
 129 # You should not need to change the next three lines
 130 export ATLOG="$CODEMGR_WS/log"
 131 export LOGFILE="$ATLOG/nightly.log"
 132 export MACH="$(uname -p)"
 133 
 134 #
 135 #  The following two macros are the closed/crypto binaries.  Once
 136 #  Illumos has totally freed itself, we can remove these references.
 137 #  Until then, the developer/illumos-closed package in OmniOS places these
 138 #  in the location below.
 139 #
 140 # Location of encumbered binaries.
 141 export ON_CLOSED_BINS="/opt/onbld/closed"
 142 
 143 # REF_PROTO_LIST - for comparing the list of stuff in your proto area
 144 # with. Generally this should be left alone, since you want to see differences
 145 # from your parent (the gate).
 146 #
 147 export REF_PROTO_LIST="$PARENT_WS/usr/src/proto_list_${MACH}"
 148 
 149 
 150 export ROOT="$CODEMGR_WS/proto/root_${MACH}"
 151 export SRC="$CODEMGR_WS/usr/src"
 152 export MULTI_PROTO="no"
 153 
 154 #
 155 #       build environment variables, including version info for mcs, motd,
 156 # motd, uname and boot messages. Mostly you shouldn't change this except
 157 # when the release slips (nah) or you move an environment file to a new
 158 # release
 159 #
 160 #VERSION=$GATE
 161 
 162 # VERSION for OmniOS uses the git ID of the repo. Don't use this if you aren't
 163 # using git for $GATE, or if $GATE isn't created yet.
 164 export VERSION=omnios-`cd $CODEMGR_WS; git branch | awk '{print $2}'`-`cd $CODEMGR_WS; git log --pretty=format:'%h' -n 1`
 165 
 166 #
 167 # the RELEASE and RELEASE_DATE variables are set in Makefile.master;
 168 # there might be special reasons to override them here, but that
 169 # should not be the case in general
 170 #
 171 # export RELEASE='5.11'
 172 # export RELEASE_DATE='October 2007'
 173 
 174 # proto area in parent for optionally depositing a copy of headers and
 175 # libraries corresponding to the protolibs target
 176 # not applicable given the NIGHTLY_OPTIONS
 177 #
 178 export PARENT_ROOT="$PARENT_WS/proto/root_$MACH"
 179 export PARENT_TOOLS_ROOT="$PARENT_WS/usr/src/tools/proto/root_$MACH-nd"
 180 
 181 # Package creation variables.  You probably shouldn't change these,
 182 # either.
 183 #
 184 # PKGARCHIVE determines where the repository will be created.
 185 #
 186 # PKGPUBLISHER_REDIST controls the publisher setting for the repository.
 187 #
 188 export PKGARCHIVE="${CODEMGR_WS}/packages/${MACH}/nightly"
 189 # export PKGPUBLISHER_REDIST='on-redist'
 190 
 191 # Package manifest format version.
 192 export PKGFMT_OUTPUT='v1'
 193 
 194 # we want make to do as much as it can, just in case there's more than
 195 # one problem.
 196 export MAKEFLAGS='k'
 197 
 198 # Magic variables to prevent the devpro compilers/teamware from checking
 199 # for updates or sending mail back to devpro on every use.
 200 export SUNW_NO_UPDATE_NOTIFY='1'
 201 export UT_NO_USAGE_TRACKING='1'
 202 
 203 # Build tools - don't change these unless you know what you're doing.  These
 204 # variables allows you to get the compilers and onbld files locally.
 205 # Set BUILD_TOOLS to pull everything from one location.
 206 # Alternately, you can set ONBLD_TOOLS to where you keep the contents of
 207 # SUNWonbld and SPRO_ROOT to where you keep the compilers.  SPRO_VROOT
 208 # exists to make it easier to test new versions of the compiler.
 209 #
 210 # In OmniOS, we only use SPRO_ROOT for lint, which is in the
 211 # developer/sunstudio12.1 package.
 212 export BUILD_TOOLS='/opt'
 213 export SPRO_ROOT='/opt/sunstudio12.1'
 214 
 215 # Since we only use SPRO_ROOT for lint, we need to tell nightly to use gcc.
 216 GCC_ROOT=/opt/gcc-4.4.4/;           export GCC_ROOT
 217 __GNUC="";           export __GNUC
 218 CW_NO_SHADOW=1;     export CW_NO_SHADOW
 219 ONLY_LINT_DEFS=-I${SPRO_ROOT}/sunstudio12.1/prod/include/lint; export ONLY_LINT_DEFS
 220 
 221 # This goes along with lint - it is a series of the form "A [y|n]" which
 222 # means "go to directory A and run 'make lint'" Then mail me (y) the
 223 # difference in the lint output. 'y' should only be used if the area you're
 224 # linting is actually lint clean or you'll get lots of mail.
 225 # You shouldn't need to change this though.
 226 #export LINTDIRS="$SRC y"
 227 
 228 # Set this flag to 'n' to disable the use of 'checkpaths'.  The default,
 229 # if the 'N' option is not specified, is to run this test.
 230 #CHECK_PATHS='y'
 231 
 232 # POST_NIGHTLY can be any command to be run at the end of nightly.  See
 233 # nightly(1) for interactions between environment variables and this command.
 234 #POST_NIGHTLY=
 235 
 236 # Comment this out to disable support for IPP printing, i.e. if you
 237 # don't want to bother providing the Apache headers this needs.
 238 #export ENABLE_IPP_PRINTING=
 239 
 240 # Comment this out to disable support for SMB printing, i.e. if you
 241 # don't want to bother providing the CUPS headers this needs.
 242 #export ENABLE_SMB_PRINTING=
 243 
 244 # If your distro uses certain versions of Perl, make sure either
 245 # Makefile.master contains your new defaults OR your .env file sets them.
 246 # The OmniOS illumos version has these set already.
 247 #export PERL_VERSION=5.16.1
 248 #export PERL_ARCH=i86pc-solaris-thread-multi-64int
 249 #export PERL_PKGVERS=
 250 
 251 # To build IPS packages for the version you wish to update, ONNV_BUILDNUM must
 252 # match the version you're on.  Find this in /etc/release, and lose the 'r'.
 253 
 254 # Current bloody is r151021, so use '151021'.
 255 export ONNV_BUILDNUM=151021