Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Talk:Ganymede/Build

Revision as of 00:23, 13 April 2008 by David williams.acm.org (Talk | contribs) (suggested changes to step 6)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

I suggest step 6 be changed to use the headless.zip that's produced. From what I can see, it's equivelent to the bin/buckminster directory, and would seem simpler to use what's produced, rather than zip it up again. So, from

6. Zip & transfer the bin/buckminster directory to build.eclipse.org. Unpack it as you@build.eclipse.org:/shared/ganymede/buckminster/bin/buckminster.
export you=yourUserName; 
cd /path/to/workspace/org.eclipse.dash.siteassembler/bin; 
zip -r /tmp/buckminster.zip buckminster; 
ssh $you@build.eclipse.org "mkdir -p ~/ganymede/buckminster/bin/"; 
scp /tmp/buckminster.zip $you@build.eclipse.org:~/ganymede/buckminster/bin/; 
ssh $you@build.eclipse.org "cd ~/ganymede/buckminster/bin/; unzip buckminster.zip"; 
rm -f /tmp/buckminster.zip

To something similar to

6. Transfer the bin/headless.zip file to build.eclipse.org. Unpack it in you@build.eclipse.org:/shared/ganymede/buckminster.
export you=yourUserName; 
cd /path/to/workspace/org.eclipse.dash.siteassembler/bin; 
scp headless.zip $you@build.eclipse.org:/shared/ganymede/buckminster; 
ssh $you@build.eclipse.org "cd /shared/ganymede/buckminster; unzip headless.zip"; 

Back to the top