3 # pull source code in ${working_dir}/source
4 # build in ${working_dir}/build
5 # copyback directory is ${working_dir}/copyBack
10 Usage: $(basename ${0}) [-h]
11 env WORKSPACE=<workspace> LARVER=<larsoft version> QUAL=<qualifier> $(basename ${0})
21 for label in "${labels[@]}"; do
22 for wanted in "$@"; do
23 [[ "${label}" == "${wanted}" ]] && return 0
30 while getopts :h OPT; do
41 shift `expr $OPTIND - 1`
44 working_dir="${WORKSPACE:-$(pwd)}"
45 version="${1:-${LARVER}}"
47 qual_set="${2:-${QUAL}}"
48 oIFS=${IFS}; IFS=:; quals=(${qual_set//-/:}); IFS=$oIFS; unset oIFS
49 #build_type="${3:-${BUILDTYPE}}"
52 for onequal in "${quals[@]}"; do
53 if [[ "${onequal}" =~ ^([ec])([0-9]+)$ ]]; then
55 elif [[ "${onequal}" =~ ^(s)([1-9][0-9]+)$ ]]; then
62 # create copyBack so artifact copy does not fail on early exit
63 rm -rf "${working_dir}/copyBack"
64 mkdir -p "${working_dir}/copyBack" || exit 1
66 # Find platform flavor.
68 if [ "${OS}" = "Linux" ]
71 if [ "${id}" = "Ubuntu" ]
73 flvr=u`lsb_release -r | sed -e 's/[[:space:]]//g' | cut -f2 -d":" | cut -f1 -d"."`
75 flvr=slf`lsb_release -r | sed -e 's/[[:space:]]//g' | cut -f2 -d":" | cut -f1 -d"."`
77 elif [ "${OS}" = "Darwin" ]
79 flvr=d`uname -r | cut -f1 -d"."`
89 echo "ERROR: unrecognized operating system ${OS}"
93 # Check supported builds.
94 if [[ `uname -s` == Darwin ]]; then
95 OSnum=`uname -r | cut -f1 -d"."`
96 xver=`xcodebuild -version | grep Xcode | cut -f2 -d" " | cut -f1 -d"."`
97 xcver=`xcodebuild -version | grep Xcode`
98 if { [[ ${basequal} =~ ^e(9$|[1-9][0-9]) ]] && \
99 [[ ${xver} < 7 ]] && \
100 [[ ${OSnum} > 13 ]]; }; then
101 # XCode too old on this platform.
102 echo "${basequal} build not supported on `uname -s`${OSnum} with ${xcver}"
103 echo "${basequal} build not supported on `uname -s`${OSnum} with ${xcver}" > \
104 "${working_dir}/copyBack/skipping_build"
106 elif { [[ "$basequal" == e* ]] || \
107 { [[ "$basequal" == c* ]] && (( $OSnum < 15 )); }; }; then
108 if want_unsupported; then
109 echo "Building unsupported ${basequal} on `uname -s`${OSnum} due to \$CET_BUILD_UNSUPPORTED=${CET_BUILD_UNSUPPORTED}"
111 # Don't normally support GCC builds on MacOS.
112 msg="${basequal} build not supported on `uname -s`${OSnum} -- export CET_BUILD_UNSUPPORTED=1 to override."
114 echo "$msg" > "${working_dir}/copyBack/skipping_build"
118 if have_label py2; then
119 msg="We are not building for Python2 on Darwin."
121 echo "${msg}" > "${working_dir}/copyBack/skipping_build"
124 elif [[ "${flvr}" == slf6 ]]; then
125 if have_label py2; then
126 echo "Building for supported Python2 on SLF6"
128 msg="Python3 builds not supported on SLF6."
130 echo "${msg}" > "${working_dir}/copyBack/skipping_build"
135 dotver=`echo ${version} | sed -e 's/_/./g' | sed -e 's/^v//'`
137 echo "building the larsoft distribution for ${version} ${dotver} ${qual_set}"
138 echo "build flavor is ${flvr}"
141 qualdir=`echo ${qual_set} | sed -e 's%:%-%'`
145 blddir=${working_dir}/build
146 srcdir=${working_dir}/source
147 # start with clean directories
150 # now make the dfirectories
151 mkdir -p ${srcdir} || exit 1
152 mkdir -p ${blddir} || exit 1
154 cd ${blddir} || exit 1
155 curl --fail --silent --location --insecure -O http://scisoft.fnal.gov/scisoft/bundles/tools/buildFW || exit 1
158 cd ${blddir} || exit 1
162 for build_type in prof debug
164 (( ${#labels[@]} > 0 )) && lopt=-l
165 ./buildFW -t -b ${basequal} \
166 ${lopt} $(IFS=:; printf '%s' "${labels[*]}") \
167 ${blddir} ${build_type} lar_product_stack-${version} || \
168 { mv ${blddir}/*.log "${working_dir}/copyBack/"
171 ./buildFW -t -b ${basequal} -s ${squal} \
172 ${lopt} $(IFS=:; printf '%s' "${labels[*]}") \
173 ${blddir} ${build_type} larbase-${version} || \
174 { mv ${blddir}/*.log "${working_dir}/copyBack/"
177 ./buildFW -t -b ${basequal} -s ${squal} \
178 ${lopt} $(IFS=:; printf '%s' "${labels[*]}") \
179 ${blddir} ${build_type} larsoft-${version} || \
180 { mv ${blddir}/*.log "${working_dir}/copyBack/"
183 objver=`ls larsoftobj-cfg* | cut -f3 -d"-" | sed -e 's/\./_/g'`
184 ./buildFW -t -b ${basequal} \
185 ${lopt} $(IFS=:; printf '%s' "${labels[*]}") \
186 ${blddir} ${build_type} larsoftobj-${objver} || \
187 { mv ${blddir}/*.log "${working_dir}/copyBack/"
195 # get these out of the way
196 mv ${blddir}/*source* ${srcdir}/
197 mv ${blddir}/g*noarch* ${srcdir}/
198 mv ${blddir}/larsoft_data*.bz2 ${srcdir}/
200 mv ${blddir}/*.bz2 "${working_dir}/copyBack/"
201 mv ${blddir}/*.txt "${working_dir}/copyBack/"