summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2014-09-24 11:24:22 -0400
committerOz Linden <oz@lindenlab.com>2014-09-24 11:24:22 -0400
commit2ea24ecc3b400358f6b8f25fd28b62a3856021c2 (patch)
tree546c720e8c32cec03fd0319a7fc6995993b8f723
parent3f80f4f30317cd6c4d1ef798ce0facfe3f3cf19a (diff)
use dependency graph generation from buildscripts build.sh
-rwxr-xr-xbuild.sh12
1 files changed, 1 insertions, 11 deletions
diff --git a/build.sh b/build.sh
index 4568361617..7ca95002fa 100755
--- a/build.sh
+++ b/build.sh
@@ -177,17 +177,7 @@ build_docs()
echo Hello world > documentation.txt
upload_item docs documentation.txt text/plain
end_section "Stub documentation.txt"
- begin_section "Dependency Graph"
- depends_graph="$build_dir/dependancies.png"
- echo "$AUTOBUILD" graph --output "$depends_graph"
- if "$AUTOBUILD" graph --output "$depends_graph" >> "$build_log" 2>&1
- then
- record_event "autobuild graph succeeded"
- uplaod_item docs "$depends_graph" image/png
- else
- record_event "autobuild graph failed"
- fi
- end_section "Dependency Graph"
+ record_dependencies_graph # defined in build.sh
end_section "Building Documentation"
}