From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1LtIk4-0001pB-SO for mharc-grub-devel@gnu.org; Mon, 13 Apr 2009 05:46:17 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LtIk3-0001nS-4N for grub-devel@gnu.org; Mon, 13 Apr 2009 05:46:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LtIjy-0001it-DF for grub-devel@gnu.org; Mon, 13 Apr 2009 05:46:14 -0400 Received: from [199.232.76.173] (port=34741 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LtIjx-0001iT-TN for grub-devel@gnu.org; Mon, 13 Apr 2009 05:46:09 -0400 Received: from mail-fx0-f166.google.com ([209.85.220.166]:43889) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LtIjx-0006bK-AL for grub-devel@gnu.org; Mon, 13 Apr 2009 05:46:09 -0400 Received: by fxm10 with SMTP id 10so2130967fxm.42 for ; Mon, 13 Apr 2009 02:46:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type; bh=/+tSBA3OSMzcpHaXoD5HrXeh9zcXhO2YOljm5n7P+KA=; b=OQZyIgoflzUuYJ5XwtxcwsPO9ATjjnPDbp7s75B5sjEyQey3Vq5bap5GT1LGeRQBwx im9aZfj0B28RCsx3wLRX5JeVQY8YxiPVFVhmQMwZkJF7MdL0NHn9dHHfTZIlSHqJF4PE IWh1khvABMSSmU/dtmo2DUd7wUJa0FMQnSL0U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type; b=t77cImMHROTi2AlV2gy7iZZ5P+W6zCskXYzeLZ937VdkbUBEp8VPqInbQFipiZMSpA jD5U5lNkkYyAN+eAY57uPLUSo7axz1BOeX04euf7MhxJ4FXVrqIUFVQlcrCb+ji2/E27 rcPId5CmUm6oZlPA8LRSzu2Je9/INkSi9m40Q= Received: by 10.86.95.20 with SMTP id s20mr4653294fgb.40.1239615968385; Mon, 13 Apr 2009 02:46:08 -0700 (PDT) Received: from ?192.168.1.25? (116-145.62-81.cust.bluewin.ch [81.62.145.116]) by mx.google.com with ESMTPS id 4sm6874865fgg.25.2009.04.13.02.46.07 (version=SSLv3 cipher=RC4-MD5); Mon, 13 Apr 2009 02:46:07 -0700 (PDT) Message-ID: <49E309E4.4040507@gmail.com> Date: Mon, 13 Apr 2009 11:46:12 +0200 From: phcoder User-Agent: Thunderbird 2.0.0.21 (X11/20090318) MIME-Version: 1.0 To: The development of GRUB 2 Content-Type: multipart/mixed; boundary="------------050605040805020408090004" X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: Nightly build script X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Apr 2009 09:46:15 -0000 This is a multi-part message in MIME format. --------------050605040805020408090004 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hello, here is a first proposition of a script for nightly builds. On IRC Yoshinori K. Okuji said that grub.enbug.org could be used to host these files. Can this server do the builds too? If not can someone setup build factory? -- Regards Vladimir 'phcoder' Serbinenko --------------050605040805020408090004 Content-Type: application/x-sh; name="autocompile.sh" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="autocompile.sh" #!/bin/bash function compile () { rm -rf $1-build; mkdir -p $1-build; rm -rf $1-install; mkdir -p $1-install; cd $1-build; ../source/configure $2; make DESTDIR=$PWD/../$1-install make install cd -; tar czf grub2-$1-`date --utc +%Y%m%d%H%M`.tar.gz --transform "s,$1-install/,," $1-install/* } cd source ./autogen.sh cd - tar czf grub2-src-`date --utc +%Y%m%d%H%M`.tar.gz --transform "s,source/,," source/* compile i386-pc "--target=i386 --with-platform=pc" compile i386-coreboot "--target=i386 --with-platform=coreboot" compile i386-ieee1275 "--target=i386 --with-platform=ieee1275" compile i386-efi "--target=i386 --with-platform=efi" compile x86_64-efi "--target=x86_64 --with-platform=efi" --------------050605040805020408090004--