gecko-dev/tools/tinderbox/post-mozilla-sample.pl
mcafee%netscape.com 4536b28945 minor comment
2001-11-26 05:48:06 +00:00

43 lines
997 B
Perl
Executable File

#!/usr/bin/perl
#
#
# This script gets called after a full mozilla build & test.
# Use this to build and test an embedded or commercial branding of Mozilla.
#
# Edit, and rename this file to post-mozilla.pl to activate.
# ./build-seamonkey-utils.pl will call PostMozilla::main() after
# a successful build and testing of mozilla. This package can report
# status via the $TinderUtils::build_status variable. Yeah this is a hack,
# but it works for now. Feel free to improve this mechanism to properly
# return values & stuff. -mcafee
#
use strict;
package PostMozilla;
sub main {
# Get build directory from caller.
my ($mozilla_build_dir) = @_;
TinderUtils::print_log "Post-Mozilla build goes here.\n";
#
# Build script goes here.
#
# Report some kind of status to parent script.
#
# {'busted', 'testfailed', 'success'}
#
# Report a fake success, for example's sake.
return 'success';
}
# Need to end with a true value, (since we're using "require").
1;