diff mbox

[kteam-tools,pull,request] Get the iso build scripts from the kteam-tools repo and build in a certain working directory.

Message ID 4C49928D.9060102@canonical.com
State Accepted
Delegated to: Tim Gardner
Headers show

Commit Message

Brad Figg July 23, 2010, 1:01 p.m. UTC
The following changes since commit 28425be08218365c46afbb9d036cfd55d734e321:

   kernel_devs.conf: Added Haitao Zhang and Ayan George (2010-07-19 07:52:27 -0600)

are available in the git repository at:
   git://kernel.ubuntu.com/bradf/kteam-tools tangerine

Brad Figg (1):
       Get the iso build scripts from the kteam-tools repo and build in a certain working directory.

  daily-test-isos/daily-iso-builder.sh |   24 ++++++++++++++----------
  1 files changed, 14 insertions(+), 10 deletions(-)

Comments

Tim Gardner July 23, 2010, 1:20 p.m. UTC | #1
On 07/23/2010 03:01 PM, Brad Figg wrote:
> git://kernel.ubuntu.com/bradf/kteam-tools tangerine

Applied, but I think you ought to abstract the release name and some of 
the locations.

rtg
diff mbox

Patch

diff --git a/daily-test-isos/daily-iso-builder.sh b/daily-test-isos/daily-iso-builder.sh
index 02959e3..bf4b253 100644
--- a/daily-test-isos/daily-iso-builder.sh
+++ b/daily-test-isos/daily-iso-builder.sh
@@ -1,18 +1,22 @@ 
  #!/bin/bash
  set -e
-git clone zinc.canonical.com:/srv/kernel.ubuntu.com/git/bradf/isodev
+if [ -e kteam-tools ];then
+    rm -rf kteam-tools
+fi

-isodev/rsync-ubuntu-image cdimage/daily-live/current/maverick-desktop-amd64.iso
-isodev/rsync-ubuntu-image cdimage/daily-live/current/maverick-desktop-i386.iso
+git clone git://kernel.ubuntu.com/ubuntu/kteam-tools.git
+
+wget http://cdimage.ubuntu.com/daily-live/current/maverick-desktop-amd64.iso
+wget http://cdimage.ubuntu.com/daily-live/current/maverick-desktop-i386.iso

  (
-    cd isodev
-    git clone zinc.canonical.com:/srv/kernel.ubuntu.com/git/manjo/kernel-qa.git
+    cd kteam-tools/daily-test-isos
+    git clone git://kernel.ubuntu.com/manjo/kernel-qa.git
      rm -rf kernel-qa/.git
      rm kernel-qa/tests/video
-    ./mk-custom-iso -i /home/bradf/work/isos/ubuntu/cdimage/daily-live/current/maverick-desktop-i386.iso
-    ./mk-custom-iso -i /home/bradf/work/isos/ubuntu/cdimage/daily-live/current/maverick-desktop-amd64.iso
+    ./mk-custom-iso -i /home/bradf/work/maverick-desktop-i386.iso
+    ./mk-custom-iso -i /home/bradf/work/maverick-desktop-amd64.iso
  )
-cp /tmp/maverick-desktop-i386-custom.iso .
-cp /tmp/maverick-desktop-amd64-custom.iso .
-rm -rf isodev
+cp /tmp/maverick-desktop-i386-custom.iso  /home/bradf/work/zinc-mirror/
+cp /tmp/maverick-desktop-amd64-custom.iso /home/bradf/work/zinc-mirror/
+rm -rf kteam-tools