X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/b94830d9593ca8c243fef1bc0b29eb751f935cde..c457f06e4341dc158b7cdea3c8c7700ffaf237c0:/bin/mdw-sbuild-server diff --git a/bin/mdw-sbuild-server b/bin/mdw-sbuild-server index a1355b8..2bba42a 100755 --- a/bin/mdw-sbuild-server +++ b/bin/mdw-sbuild-server @@ -33,7 +33,6 @@ do done : ${buildroot=$HOME/build} : ${default_targets="wheezy-amd64 wheezy-i386"} -: ${parallel=-j3} : ${DEB_BUILD_OPTIONS=parallel=4}; export DEB_BUILD_OPTIONS ###-------------------------------------------------------------------------- @@ -57,10 +56,24 @@ want_1 () { echo "$1" } +run () { + case $notreally in + t) echo "+ $*" ;; + nil) "$@" ;; + esac +} + +decor () { + tag=$1 marker=$2 + while IFS= read -r line; do + printf "%-21s %c %s\n" "$tag" "$marker" "$line" + done +} + ###-------------------------------------------------------------------------- ### Parse options. -bogusp=nil archp=nil indepp=nil makeopts="" +bogusp=nil archp=nil indepp=nil keepon=nil notreally=nil unset targets while getopts "haint:" opt; do @@ -73,6 +86,7 @@ Options: -h Show this help text. -a Build only architecture-dependent packages. -i Build only architecture-neutral packages. + -k Keep going even if one fails. -n Don't actually do the build. -t TARGET Build in TARGET build environment. @@ -91,7 +105,8 @@ EOF ;; a) archp=t ;; i) indepp=t ;; - n) makeopts="${makeopts+$makeopts }-n" ;; + k) keepon=t ;; + n) notreally=t ;; t) targets="${targets+$targets }$OPTARG" ;; *) bogusp=nil ;; esac @@ -137,6 +152,7 @@ case "$#,$1" in ## racing with another process, but that's why we're trying in a loop. if mkdir "$ver#$nn" >/dev/null 2>&1; then winp=t + cd "$ver#$nn" break fi @@ -149,6 +165,9 @@ case "$#,$1" in ## Make sure we actually succeeded. case $winp in t) ;; *) fail "failed to create build directory" ;; esac + ## Make an empty directory for dependency packages. + mkdir -p pkgs/ + ## Done. echo "$buildroot/$dist#$nn" ;; @@ -171,11 +190,27 @@ case "$#,$1" in unset first rest; anyp=nil depp=nil allp=nil wantarchs=$(sed -n '/^[Aa]rchitecture:/ s/^[^:]*: *//p' "$dsc") : ${wantarchs:=any} + unset buildarchs buildarchs_seen=: ## Work through the available targets assigning builds to them. This is ## actually a little tricky. for t in $targets; do + ## Dissect the target name. + suite=${t%%-*} archs=${t#*-} + case $archs in + */*) target=${archs%/*} host=${archs#*/} ;; + *) target=$archs host=$archs; t=$suite-$target/$host ;; + esac + case $buildarchs_seen in + *:$target:*) + ;; + *) + buildarchs=${buildarchs+$buildarchs }$target + buildarchs_seen=$buildarchs_seen$target: + ;; + esac + ## Work through the architectures which we can build. for arch in $wantarchs; do case $arch in @@ -194,12 +229,12 @@ case "$#,$1" in *) ## There's at least one architecture-specific package. - ## If we don't want to build architecture-specific package then + ## If we don't want to build architecture-specific packages then ## there's nothing to do. case $archp in nil) continue ;; esac ## If we can't build it then we shouldn't try. - if ! dpkg-architecture -a"$os-${t#*-}" -i"$arch"; then + if ! dpkg-architecture -a"$os-$target" -i"$arch"; then continue fi @@ -226,33 +261,50 @@ case "$#,$1" in esac case $archp in t) ;; - nil) firstopt="$firstopt --debbuildopt=-A" ;; + nil) firstopt="$firstopt --no-arch-any" ;; esac - ## Build a cheesy makefile to run these in parallel. - cat >build.mk <pipeout - rc=$?; set -e - wait $! - rm build.mk pipeout - find . -maxdepth 1 -type l -exec rm {} \; + ## Build the builds sequentially. Tests can conflict with each other, + ## e.g., over port numbers. + rc=0 buildopt=$firstopt + for t in $first $rest; do + host=${t##*/} full=${t%/*} + suite=${full%%-*} target=${full#*-} + + ## And we're ready to go. + exec 3>&1 + thisrc=$( + { { { { set +e + run sbuild --extra-package=$pkgs.$target \ + --dist=$suite --build=$host --host=$target \ + --chroot=$suite-$host --verbose $buildopt $dsc \ + 3>&- 4>&- 5>&- + echo $? >&5 + } | + decor "$full" "|" >&4; } 2>&1 | + decor "$full" "*" >&4; } 4>&1 | + cat -u >&3; } 5>&1 &- + case $thisrc in 0) ;; + *) + echo failed rc=$thisrc >$stat; rc=$thisrc + case $keepon in nil) break ;; esac + ;; + esac + buildopt=--no-arch-all + done exit $rc ;; build,*)