Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
175895a2
Commit
175895a2
authored
10 years ago
by
Oz Linden
Browse files
Options
Downloads
Patches
Plain Diff
add build_docs step and experimental use of autobuild graph subcommand
parent
22a613df
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
BuildParams
+1
-0
1 addition, 0 deletions
BuildParams
build.sh
+10
-6
10 additions, 6 deletions
build.sh
with
11 additions
and
6 deletions
BuildParams
+
1
−
0
View file @
175895a2
...
...
@@ -11,6 +11,7 @@ Linux.symbolfiles = "newview/secondlife-symbols-linux.tar.bz2"
# Use Public Upload Locations
public_build = true
build_docs = true
# skip windows debug build until we can get a fix in.
build_CYGWIN_Debug = false
...
...
This diff is collapsed.
Click to expand it.
build.sh
+
10
−
6
View file @
175895a2
#!/bin/sh
# This is a the master build script - it is intended to be run by parabuild
# This is a the master build script - it is intended to be run by the Linden
# Lab build farm
# It is called by a wrapper script in the shared repository which sets up
# the environment from the various BuildParams files and does all the build
# result post-processing.
...
...
@@ -12,8 +13,6 @@
# * The special style in which python is invoked is intentional to permit
# use of a native python install on windows - which requires paths in DOS form
# * This script relies heavily on parameters defined in BuildParams
# * The basic convention is that the build name can be mapped onto a mercurial URL,
# which is also used as the "branch" name.
check_for
()
{
...
...
@@ -172,11 +171,17 @@ build()
# This is called from the branch independent script upon completion of all platform builds.
build_docs
()
{
begin_section Docs
begin_section
"Building Documentation"
begin_section
"Stub documentation.txt"
# Stub code to generate docs
echo
Hello world
>
documentation.txt
upload_item docs documentation.txt text/plain
end_section Docs
end_section
"Stub documentation.txt"
begin_section
"Dependency Graph"
depends_graph
=
"
$build_dir
/dependancies.png"
"
$AUTOBUILD
"
graph
--output
"
$depends_graph
"
&&
record_event
"autobuild graph succeeded"
||
record_event
"autobuild graph failed"
end_section
"Dependency Graph"
end_section
"Building Documentation"
}
...
...
@@ -375,7 +380,6 @@ then
fi
fi
# check status and upload results to S3
if
$succeeded
then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment