build-launcher-dmg 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. #!/usr/bin/perl -w
  2. # Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
  3. # Copyright (C) 2006 Mark Rowe <opendarwin.org@bdash.net.nz>. All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. #
  9. # 1. Redistributions of source code must retain the above copyright
  10. # notice, this list of conditions and the following disclaimer.
  11. # 2. Redistributions in binary form must reproduce the above copyright
  12. # notice, this list of conditions and the following disclaimer in the
  13. # documentation and/or other materials provided with the distribution.
  14. # 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
  15. # its contributors may be used to endorse or promote products derived
  16. # from this software without specific prior written permission.
  17. #
  18. # THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
  19. # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  20. # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  21. # DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
  22. # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  23. # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  24. # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  25. # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  27. # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. # Script used by build slaves to create a disk-image containing WebKit.app.
  29. use strict;
  30. use File::Basename;
  31. use Getopt::Long;
  32. use FindBin;
  33. use lib "$FindBin::Bin/../Scripts";
  34. use webkitdirs;
  35. my $nightlyLauncherStagingPath = productDir() . "/WebKit.app";
  36. my $droseraStagingPath = productDir() . "/DroseraLauncher.app";
  37. my $nightlyLauncherDiskImagePath;
  38. my $nightlyRemoteHost = 'webkit-nightlies@live.nightly.webkit.org';
  39. my $nightlyRemotePath = "/home/webkit-nightlies";
  40. my $nightlyRemoteLatestPath = "$nightlyRemotePath/update-latest.sh";
  41. sub buildDiskImage
  42. {
  43. my $revision = currentSVNRevision();
  44. my $productDir = productDir();
  45. $nightlyLauncherDiskImagePath = productDir() . "/WebKit-SVN-r$revision.dmg";
  46. print "Removing previous temp source directory (if any)...\n";
  47. `rm -rf /tmp/WebKitNightly`;
  48. die "Removing previous temp source directory failed" if $?;
  49. print "Making a new temp source directory...\n";
  50. `mkdir /tmp/WebKitNightly`;
  51. die "Making a new temp source directory failed" if $?;
  52. print "Copying WebKit.app to temp source directory...\n";
  53. `cp -R \"$nightlyLauncherStagingPath\" /tmp/WebKitNightly/WebKit.app`;
  54. die "Copying WebKit.app to temp source directory failed" if $?;
  55. print "Copying Drosera.app to temp source directory...\n";
  56. `cp -R \"$droseraStagingPath\" /tmp/WebKitNightly/Drosera.app`;
  57. die "Copying Drosera.app to temp source directory failed" if $?;
  58. print "Creating disk image...\n";
  59. `hdiutil create \"$nightlyLauncherDiskImagePath\" -ov -srcfolder /tmp/WebKitNightly -fs HFS+ -volname \"WebKit\"`;
  60. die "Creating disk image failed" if $?;
  61. print "Removing temp source directory...\n";
  62. `rm -rf /tmp/WebKitNightly`;
  63. die "Removing temp source directory failed" if $?;
  64. print "Compressing disk image...\n";
  65. system("mv", "-f", $nightlyLauncherDiskImagePath, "$nightlyLauncherDiskImagePath.uncompressed.dmg") == 0 or die "Renaming disk image failed";
  66. system("hdiutil", "convert", "-quiet", "$nightlyLauncherDiskImagePath.uncompressed.dmg", "-format", "UDBZ", "-imagekey", "zlib-level=9", "-o", "$nightlyLauncherDiskImagePath");
  67. die "Compressing disk image failed" if $?;
  68. unlink "$nightlyLauncherDiskImagePath.uncompressed.dmg";
  69. }
  70. sub uploadNightlyDiskImage
  71. {
  72. my $buildTag = shift(@_);
  73. my $nightlyRemoteDiskImagePath = "$nightlyRemotePath/builds/$buildTag/mac/" . basename($nightlyLauncherDiskImagePath);
  74. my $revision = currentSVNRevision();
  75. system("rsync", "-vP", $nightlyLauncherDiskImagePath, "$nightlyRemoteHost:$nightlyRemoteDiskImagePath") == 0 or die "Failed uploading disk image";
  76. system("ssh", $nightlyRemoteHost, $nightlyRemoteLatestPath, $buildTag, "mac", $nightlyRemoteDiskImagePath, $revision) == 0 or die "Failed linking disk image to latest";
  77. }
  78. sub uploadBuildSlaveDiskImage
  79. {
  80. my $remoteDiskImagePath = shift(@_) . basename($nightlyLauncherDiskImagePath);
  81. system("rsync", "-vP", $nightlyLauncherDiskImagePath, $remoteDiskImagePath) == 0 or die "Failed uploading disk image";
  82. }
  83. my $uploadTo;
  84. my $nightlyBuild = 0;
  85. my $buildTag = 'trunk';
  86. GetOptions('upload-to-host=s' => \$uploadTo,
  87. 'upload-as-nightly!' => \$nightlyBuild,
  88. 'tag=s' => \$buildTag);
  89. chdirWebKit();
  90. buildDiskImage($buildTag);
  91. if ($nightlyBuild) {
  92. uploadNightlyDiskImage($buildTag);
  93. } elsif ($uploadTo) {
  94. uploadBuildSlaveDiskImage($uploadTo);
  95. } else {
  96. print "Disk image left at $nightlyLauncherDiskImagePath\n";
  97. }