diff options
author | Oz Linden <oz@lindenlab.com> | 2016-08-30 16:06:22 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2016-08-30 16:06:22 -0400 |
commit | f99c3002a1efbd6512094ebd4620c28490c52226 (patch) | |
tree | 4a50cdab6c469c8e43739dc9e85630bb6c7c5fcc /build.sh | |
parent | 5a7855d4b388bcf3d365d20e54db227591febeba (diff) |
clean up logging, change debian installer upload name to "deb"
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -159,7 +159,7 @@ build() package_llphysicsextensions_tpv || fatal "failed building llphysicsextensions packages" else - echo "Skipping build due to configuration build_viewer=${build_viewer}" + record_event "Skipping build due to configuration build_viewer=${build_viewer}" echo true >"$build_dir"/build_ok fi } @@ -232,6 +232,9 @@ do then begin_section "Build $variant" build "$variant" "$build_dir" + end_section "Build $variant" + + begin_section "post-build $variant" if `cat "$build_dir/build_ok"` then case "$variant" in @@ -270,7 +273,8 @@ do else record_failure "Build of \"$variant\" failed." fi - end_section "Build $variant" + begin_section "post-build $variant" + else record_event "configure for $variant failed: build skipped" fi @@ -320,7 +324,7 @@ then # upload debian package and create repository begin_section "Upload Debian Repository" for deb_file in `/bin/ls ../packages_public/*.deb ../*.deb 2>/dev/null`; do - upload_output "installer" $deb_file binary/octet-stream + upload_output "deb" $deb_file binary/octet-stream done for deb_file in `/bin/ls ../packages_private/*.deb 2>/dev/null`; do upload_output debian $deb_file binary/octet-stream |