2 # Copyright (C) The Arvados Authors. All rights reserved.
4 # SPDX-License-Identifier: AGPL-3.0
6 read -rd "\000" helpmessage <<EOF
7 $(basename $0): Orchestrate run-build-packages.sh for one target
10 WORKSPACE=/path/to/arvados $(basename $0) [options]
13 Distribution to build packages for (default: debian8)
15 Build command to execute (default: use built-in Docker image command)
17 Run package install test script "test-packages-[target].sh"
19 Output debug information (default: false)
20 --only-build <package>
21 Build only a specific package
23 Test only a specific package
25 Test even if there is no new untested package
26 --build-version <string>
27 Version to build (default:
28 \$ARVADOS_BUILDING_VERSION-\$ARVADOS_BUILDING_ITERATION or
29 0.1.timestamp.commithash)
31 WORKSPACE=path Path to the Arvados source tree to build packages from
37 if ! [[ -n "$WORKSPACE" ]]; then
38 echo >&2 "$helpmessage"
40 echo >&2 "Error: WORKSPACE environment variable not set"
45 if ! [[ -d "$WORKSPACE" ]]; then
46 echo >&2 "$helpmessage"
48 echo >&2 "Error: $WORKSPACE is not a directory"
53 PARSEDOPTS=$(getopt --name "$0" --longoptions \
54 help,debug,test-packages,target:,command:,only-test:,force-test,only-build:,build-version: \
64 eval set -- "$PARSEDOPTS"
65 while [ $# -gt 0 ]; do
68 echo >&2 "$helpmessage"
83 ONLY_BUILD="$2"; shift
96 if [[ -z "$2" ]]; then
98 elif ! [[ "$2" =~ (.*)-(.*) ]]; then
99 echo >&2 "FATAL: --build-version '$2' does not include an iteration. Try '${2}-1'?"
102 ARVADOS_BUILDING_VERSION="${BASH_REMATCH[1]}"
103 ARVADOS_BUILDING_ITERATION="${BASH_REMATCH[2]}"
108 if [ $# -gt 1 ]; then
109 echo >&2 "$0: unrecognized argument '$2'. Try: $0 --help"
119 if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
120 echo "build version='$ARVADOS_BUILDING_VERSION', package iteration='$ARVADOS_BUILDING_ITERATION'"
123 if [[ -n "$test_packages" ]]; then
124 if [[ -n "$(find $WORKSPACE/packages/$TARGET -name '*.rpm')" ]] ; then
126 /usr/bin/which createrepo >/dev/null
127 if [[ "$?" != "0" ]]; then
129 echo >&2 "Error: please install createrepo. E.g. sudo apt-get install createrepo"
134 createrepo $WORKSPACE/packages/$TARGET
137 if [[ -n "$(find $WORKSPACE/packages/$TARGET -name '*.deb')" ]] ; then
138 (cd $WORKSPACE/packages/$TARGET
139 dpkg-scanpackages . 2> >(grep -v 'warning' 1>&2) | tee Packages | gzip -c > Packages.gz
140 apt-ftparchive -o APT::FTPArchive::Release::Origin=Arvados release . > Release
144 COMMAND="/jenkins/package-testing/test-packages-$TARGET.sh"
145 IMAGE="arvados/package-test:$TARGET"
147 IMAGE="arvados/build:$TARGET"
148 if [[ "$COMMAND" != "" ]]; then
149 COMMAND="/usr/local/rvm/bin/rvm-exec default bash /jenkins/$COMMAND --target $TARGET$DEBUG"
153 JENKINS_DIR=$(dirname "$(readlink -e "$0")")
155 if [[ -n "$test_packages" ]]; then
156 pushd "$JENKINS_DIR/package-test-dockerfiles"
158 pushd "$JENKINS_DIR/package-build-dockerfiles"
159 make "$TARGET/generated"
164 time docker build --tag=$IMAGE .
167 if test -z "$packages" ; then
168 packages="arvados-api-server
170 arvados-docker-cleaner
175 crunch-dispatch-local
176 crunch-dispatch-slurm
187 python-arvados-python-client
188 python-arvados-cwl-runner"
195 mkdir -p "$WORKSPACE/apps/workbench/vendor/cache-$TARGET"
196 mkdir -p "$WORKSPACE/services/api/vendor/cache-$TARGET"
199 -v "$JENKINS_DIR:/jenkins"
200 -v "$WORKSPACE:/arvados"
201 -v /arvados/services/api/vendor/bundle
202 -v /arvados/apps/workbench/vendor/bundle
203 -v "$WORKSPACE/services/api/vendor/cache-$TARGET:/arvados/services/api/vendor/cache"
204 -v "$WORKSPACE/apps/workbench/vendor/cache-$TARGET:/arvados/apps/workbench/vendor/cache"
207 if [[ -n "$test_packages" ]]; then
208 for p in $packages ; do
209 if [[ -n "$ONLY_BUILD" ]] && [[ "$p" != "$ONLY_BUILD" ]]; then
212 if [[ -e "${WORKSPACE}/packages/.last_test_${TARGET}" ]] && [[ -z "$FORCE_TEST" ]]; then
213 MATCH=`find ${WORKSPACE}/packages/ -newer ${WORKSPACE}/packages/.last_test_${TARGET} -regex .*${TARGET}/$p.*`
214 if [[ "$MATCH" == "" ]]; then
215 # No new package has been built that needs testing
216 echo "Skipping $p test because no new package was built since the last test."
221 echo "START: $p test on $IMAGE" >&2
223 "${docker_volume_args[@]}" \
224 --env ARVADOS_DEBUG=$ARVADOS_DEBUG \
225 --env "TARGET=$TARGET" \
226 --env "WORKSPACE=/arvados" \
229 echo "OK: $p test on $IMAGE succeeded" >&2
232 package_fails="$package_fails $p"
233 echo "ERROR: $p test on $IMAGE failed with exit status $FINAL_EXITCODE" >&2
237 touch ${WORKSPACE}/packages/.last_test_${TARGET}
240 echo "START: build packages on $IMAGE" >&2
241 # Move existing packages and other files into the processed/ subdirectory
242 if [[ ! -e "${WORKSPACE}/packages/${TARGET}/processed" ]]; then
243 mkdir -p "${WORKSPACE}/packages/${TARGET}/processed"
246 mv -f ${WORKSPACE}/packages/${TARGET}/* ${WORKSPACE}/packages/${TARGET}/processed/ 2>/dev/null
250 "${docker_volume_args[@]}" \
251 --env ARVADOS_BUILDING_VERSION="$ARVADOS_BUILDING_VERSION" \
252 --env ARVADOS_BUILDING_ITERATION="$ARVADOS_BUILDING_ITERATION" \
253 --env ARVADOS_DEBUG=$ARVADOS_DEBUG \
254 --env "ONLY_BUILD=$ONLY_BUILD" \
258 echo "OK: build packages on $IMAGE succeeded" >&2
261 echo "ERROR: build packages on $IMAGE failed with exit status $FINAL_EXITCODE" >&2
265 if test -n "$package_fails" ; then
266 echo "Failed package tests:$package_fails" >&2