]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
simplify buildbot upload of windows installer
authorrobk-tahoe <robk-tahoe@allmydata.com>
Thu, 17 Jan 2008 03:29:30 +0000 (20:29 -0700)
committerrobk-tahoe <robk-tahoe@allmydata.com>
Thu, 17 Jan 2008 03:29:30 +0000 (20:29 -0700)
since the installer upload got more complex (needing to chmod files before
rsyncing) I promoted it to a makefile target, simplifying the buildbot steps
involved

Makefile

index 5ef5b4287b424ecf6273b6a523d1b661b2c94844..d71ba68d592b25d83ad5ba6c2c8cca1469807e36 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -418,7 +418,7 @@ deb-gutsy-head:
        fakeroot debian/rules binary
 
 # These targets provide for windows native builds
-.PHONY: hatch-eggs windows-exe windows-installer
+.PHONY: hatch-eggs windows-exe windows-installer windows-installer-upload
 
 hatch-eggs:
        $(PP) $(PYTHON) misc/hatch-eggs.py
@@ -430,3 +430,8 @@ windows-installer: windows-exe
        $(PP) $(PYTHON) misc/sub-ver.py windows/installer.tmpl >windows/installer.iss
        cd windows && "$(INNOSETUP)" /cc installer.iss
 
+windows-installer-upload:
+       chmod -R o+rx windows/dist/installer
+       rsync -av -e /usr/bin/ssh windows/dist/installer/ amduser@dev:/home/amduser/public_html/dist/tahoe/windows/
+
+