diff options
author | Erich Eckner <git@eckner.net> | 2017-10-16 14:37:08 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-10-16 14:37:08 +0200 |
commit | 2a1ddc4c1c96b54da3dc0e2e92c40b8317bb3ad6 (patch) | |
tree | c0ebb55feb18b803ae8d27ad86ecbbbc4857bf72 /bin/return-assignment | |
parent | 85506bca356df8953c57da39c46e318a36236a2e (diff) | |
download | builder-2a1ddc4c1c96b54da3dc0e2e92c40b8317bb3ad6.tar.xz |
bin/return-assignment, bin/build-packages: return and save build logs in case of success, too
Diffstat (limited to 'bin/return-assignment')
-rwxr-xr-x | bin/return-assignment | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/bin/return-assignment b/bin/return-assignment index e563e31..6809aff 100755 --- a/bin/return-assignment +++ b/bin/return-assignment @@ -2,10 +2,10 @@ # report back on a build assignment # either on success via: -# "$0 $package $revision $mod_revision $repository" and tar'ed packages (= a tar of -# package(s) and signature(s)) on stdin +# "$0 $package $revision $mod_revision $repository" and tar'ed packages and logs +# (= a tar of package(s), signature(s) and log(s)) on stdin # or on failure via: -# "$0 $package $revision $mod_revision $repository ERROR" +# "$0 $package $revision $mod_revision $repository ERROR" and tar'ed logs # exit codes: # 0: ok @@ -132,7 +132,8 @@ tar -x \ --wildcards \ --no-wildcards-match-slash \ '*.pkg.tar.xz' \ - '*.pkg.tar.xz.sig' + '*.pkg.tar.xz.sig' \ + '*.build-log' # check if all packages are signed and all signatures belong to a package signature_errors=$( @@ -180,6 +181,9 @@ if [ -n "${package_errors}" ]; then exit 4 fi +# move build-logs +find . -maxdepth 1 -name '*.build-log' -exec mv '{}' "${build_log_directory}/" \; + # move packages destination=$(official_or_community "$1.$2.$3.$4" 'staging') |