diff options
author | Erich Eckner <git@eckner.net> | 2017-10-19 09:54:05 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-10-19 09:54:05 +0200 |
commit | c31b0de18b067a141cd8c2b18a90cfbc6cbf78e5 (patch) | |
tree | 05ebd4d848d95eccd7aea7d78afff7611738d61f /bin | |
parent | c7e75a83437633b0664407e5f802ee7681c35543 (diff) | |
download | builder-c31b0de18b067a141cd8c2b18a90cfbc6cbf78e5.tar.xz |
bin/build-packages, bin/return-assignment: upload namcap.log (instead of build-log) for successful builds, insist on namcap.log for uploaded packages
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/build-packages | 6 | ||||
-rwxr-xr-x | bin/return-assignment | 59 |
2 files changed, 48 insertions, 17 deletions
diff --git a/bin/build-packages b/bin/build-packages index a78225e..21a862b 100755 --- a/bin/build-packages +++ b/bin/build-packages @@ -300,13 +300,13 @@ while [ "${count}" -ne 0 ]; do find . -maxdepth 1 -type f -name '*.pkg.tar.xz' -exec \ gpg --local-user="${package_key}" --detach-sign {} \; if ${upload_to_build_master}; then - find . -maxdepth 1 -name '*.build-log' -execdir gzip '{}' \; + find . -maxdepth 1 -name '*.pkg.tar.xz-namcap.log' -execdir gzip '{}' \; else - find . -maxdepth 1 -name '*.build-log' -execdir grep -HF '' '{}' \; + find . -maxdepth 1 -name '*.pkg.tar.xz-namcap.log' -execdir grep -HF '' '{}' \; fi # shellcheck disable=SC2046 tar -cf 'package.tar' -- $( - find . -maxdepth 1 \( -name '*.pkg.tar.xz' -o -name '*.pkg.tar.xz.sig' -o -name '*.build-log.gz' \) -not -name '*-debug-*' -printf '%f\n' + find . -maxdepth 1 \( -name '*.pkg.tar.xz' -o -name '*.pkg.tar.xz.sig' -o -name '*.pkg.tar.xz-namcap.log.gz' \) -not -name '*-debug-*' -printf '%f\n' ) while ${upload_to_build_master}; do err=0 diff --git a/bin/return-assignment b/bin/return-assignment index 8299a3e..ac642a5 100755 --- a/bin/return-assignment +++ b/bin/return-assignment @@ -133,21 +133,53 @@ tar -x \ --no-wildcards-match-slash \ '*.pkg.tar.xz' \ '*.pkg.tar.xz.sig' \ - '*.build-log.gz' + '*.pkg.tar.xz-namcap.log.gz' # check if all packages are signed and all signatures belong to a package -signature_errors=$( - find . -maxdepth 1 -name '*.pkg.tar.xz' -o -name '*.pkg.tar.xz.sig' | \ - sed 's|\.sig$||' | \ - sort | \ - uniq -c | \ - grep -v '^\s*2\s' | \ - awk '{print $2}' +missing_files=$( + find . -maxdepth 1 -name '*.pkg.tar.xz' -o -name '*.pkg.tar.xz.sig' -o -name '*.pkg.tar.xz-namcap.log.gz' | \ + sed ' + s@\.sig$@ signature@ + t + s@-namcap\.log\.gz$@ namcap@ + t + s@$@ package@ + ' | \ + sort -k1,1 -k2,2 | \ + sed ' + :a + $!N + s/^\(\(\S\+\) [^\n]\+\)\n\2 /\1 / + ta + P + D + ' | \ + sed -n ' + s/$/ / + / package /!{ + h + s/^\(\S\+\) .*$/Package "\1" is missing./ + p + g + } + / signature /!{ + h + s/^\(\S\+\) .*$/Signature of "\1" is missing./ + p + g + } + / namcap /!{ + h + s/^\(\S\+\) .*$/Namcap log of "\1" is missing./ + p + g + } + ' ) -if [ -n "${signature_errors}" ]; then - >&2 echo 'The following packages lack a signature or vice versa:' - >&2 echo "${signature_errors}" +if [ -n "${missing_files}" ]; then + >&2 echo 'The following packages lack a signature, namcap log or package file:' + >&2 echo "${missing_files}" exit 3 fi @@ -181,9 +213,8 @@ if [ -n "${package_errors}" ]; then exit 4 fi -# move build-logs -find . -maxdepth 1 -name '*.build-log.gz' -printf "%p ${build_log_directory}/success/$1.$2.$3.$4.%f\n" | \ - xargs -rn2 mv +# move namcap.logs +find . -maxdepth 1 -name '*.pkg.tar.xz-namcap.log.gz' -execdir mv '{}' "${build_log_directory}/success/" \; # move packages destination=$(official_or_community "$1.$2.$3.$4" 'staging') |