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

Difference between revisions of "Talk:Ganymede/Build"

(suggested changes to step 6)
 
(Step 6 alternative)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 +
== Step 6 alternative ==
 +
[[User:David williams.us.ibm.com|David williams.us.ibm.com]] 00:24, 13 April 2008 (EDT)
 +
<del>
 
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  
 
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'''.
 
:6. Zip & transfer the '''bin/buckminster''' directory to build.eclipse.org. Unpack it as ''you''@build.eclipse.org:/shared/ganymede/buckminster/'''bin/buckminster'''.
 
<table><tr><td>
 
<table><tr><td>
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
 
 
</td></tr></table>
 
</td></tr></table>
  
Line 16: Line 12:
 
:6. Transfer the '''bin/headless.zip''' file to build.eclipse.org. Unpack it in ''you''@build.eclipse.org:/shared/ganymede/buckminster.
 
:6. Transfer the '''bin/headless.zip''' file to build.eclipse.org. Unpack it in ''you''@build.eclipse.org:/shared/ganymede/buckminster.
 
<table><tr><td>
 
<table><tr><td>
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";
 
 
</td></tr></table>
 
</td></tr></table>
 +
</del>
 +
 +
Never mind ... all of the above was a mistake based on incorrect settings in my "diff" run. The "headless.zip" is '''not''' the same as zipping up the bin/buckminster directory ... it's missing the '''main''' thing, the org.eclipse.dash.siteassembler jar!

Latest revision as of 16:17, 13 April 2008

Step 6 alternative

David williams.us.ibm.com 00:24, 13 April 2008 (EDT) 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.

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.

Never mind ... all of the above was a mistake based on incorrect settings in my "diff" run. The "headless.zip" is not the same as zipping up the bin/buckminster directory ... it's missing the main thing, the org.eclipse.dash.siteassembler jar!

Back to the top