cancel
Showing results for 
Search instead for 
Did you mean: 

Build Alfresco from Source SVN

cbaus_8800
Champ in-the-making
Champ in-the-making
Hallo,

ich versuche gerade mir ein aktuelles Alfresco Paket zu erstellen aus den SVN Sources.

Allerdings bekomme ich einen Fehler wegen einem fehlenden Installer Paket "bitrock"…


Ausgeführter Befehl:

ant -f continuous.xml distribute



set-bitrock-builder:
     [echo] Using binaries_folder=/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/../../ALF-BINARIES

distribute-installers:
     [exec] Execute failed: java.io.IOException: Cannot run program "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/../../ALF-BINARIES/bitrock/bitrock-6.5.4/osx/bin/Builder.app/Contents/MacOS/installbuilder.sh" (in directory "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/installer/deploy-installer"): error=2, No such file or directory
     [exec] Execute failed: java.io.IOException: Cannot run program "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/../../ALF-BINARIES/bitrock/bitrock-6.5.4/osx/bin/Builder.app/Contents/MacOS/installbuilder.sh" (in directory "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/installer/bitrock"): error=2, No such file or directory
     [exec] Execute failed: java.io.IOException: Cannot run program "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/../../ALF-BINARIES/bitrock/bitrock-6.5.4/osx/bin/Builder.app/Contents/MacOS/installbuilder.sh" (in directory "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/installer/bitrock"): error=2, No such file or directory
     [exec] Execute failed: java.io.IOException: Cannot run program "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/../../ALF-BINARIES/bitrock/bitrock-6.5.4/osx/bin/Builder.app/Contents/MacOS/installbuilder.sh" (in directory "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/installer/deploy-installer"): error=2, No such file or directory
     [exec] Execute failed: java.io.IOException: Cannot run program "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/../../ALF-BINARIES/bitrock/bitrock-6.5.4/osx/bin/Builder.app/Contents/MacOS/installbuilder.sh" (in directory "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/installer/deploy-installer"): error=2, No such file or directory
     [exec] Execute failed: java.io.IOException: Cannot run program "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/../../ALF-BINARIES/bitrock/bitrock-6.5.4/osx/bin/Builder.app/Contents/MacOS/installbuilder.sh" (in directory "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/installer/bitrock"): error=2, No such file or directory
     [exec] Execute failed: java.io.IOException: Cannot run program "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/../../ALF-BINARIES/bitrock/bitrock-6.5.4/osx/bin/Builder.app/Contents/MacOS/installbuilder.sh" (in directory "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/installer/bitrock"): error=2, No such file or directory
     [exec] Execute failed: java.io.IOException: Cannot run program "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/../../ALF-BINARIES/bitrock/bitrock-6.5.4/osx/bin/Builder.app/Contents/MacOS/installbuilder.sh" (in directory "/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/installer/bitrock"): error=2, No such file or directory

BUILD FAILED
/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/continuous.xml:758:
/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/build/dist/alfresco-community-3.4.d-installer-osx.app not found.
/Users/cbaus/alf_devel/alfresco-svn/alfresco/HEAD/root/build/dist/alfresco-community-deployment-3.4.d-osx.app not found.

Total time: 24 minutes 43 seconds



Kann mir jemand einen Hinweis geben wo ich diesen Installer finden kann? Auf der bitrock Webseite befindet sich aktuell nur der Installer Version 7 *G*


lg
Chris
1 REPLY 1

bwerner
Champ in-the-making
Champ in-the-making
Hi Chris,

benötigst Du eine Distribution für Mac OSX?
Wenn nicht kannst Du das auch raus konfigurieren.
<!– *********************** –>
   <!– ** Installer targets ** –>
   <!– *********************** –>

   <!– Try and pick appropriate exe - assumes mac=OSX and unix=Linux –>
   <target name="set-bitrock-builder">
      <condition property="platformExe" value="${file.name.bitrock.exe.win}">
          <os family="windows" />
      </condition>
      <condition property="platformExe" value="${file.name.bitrock.exe.osx}">
          <os family="mac" />
      </condition>
      <condition property="platformExe" value="${file.name.bitrock.exe.linux}">
          <os family="unix" />
      </condition>
     
      <echo message="Using binaries_folder=${dir.name.binaries}"/>

   </target>


Viele Grüße,
Bernhard