Changeset 37903


Ignore:
Timestamp:
2023-08-08T17:59:07+12:00 (10 months ago)
Author:
anupama
Message:

Now added the *Windows* zulu JDK 8 with JavaFX for Expeditee and updated the RKE release-kit's installer's build.xml to unzip it. The build happens and generates the Expeditee exe file in the uploads folder, but the upload doesn't happen, and appears to be expecting tarball (or that's just the surface error). I will commit the work so far and then spot test the exe generated by installing it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/expeditee-release-kits/trunk/kits/rke/installer/build.xml

    r37890 r37903  
    1616         in the dropdown labelled: Java Packages.
    1717    -->
    18     <property name="jdk.name" value="zulu8.72.0.17-ca-fx-jdk8.0.382-linux_x64"/>
     18    <!-- if windows --><property name="jdk.name" value="zulu8.72.0.17-ca-fx-jdk8.0.382-win_x64"/><!-- /if -->
     19    <!-- if linux --><property name="jdk.name" value="zulu8.72.0.17-ca-fx-jdk8.0.382-linux_x64"/><!-- /if -->
     20   
    1921   
    2022    <!-- set some properties to keep track of the OS -->
     
    118120        </copy>
    119121        <chmod dir="${installDir}/packages/jre/bin" includes="*" perm="775"/>       
    120       -->     
     122      -->
     123     
     124      <!-- if linux|mac -->
    121125      <untar src="${installDir}/packages/${jdk.name}.tar.gz" dest="${installDir}/packages/" compression="gzip"/>
    122126      <delete file="${installDir}/packages/${jdk.name}.tar.gz"/>
     
    125129      <chmod dir="${installDir}/packages/jdk/bin" includes="*" perm="775"/>
    126130      <chmod dir="${installDir}/packages/jdk/jre/bin" includes="*" perm="775"/>
     131      <!-- /if -->
     132      <!-- if windows -->
     133      <unzip src="${installDir}/packages/${jdk.name}.zip" dest="${installDir}/packages/"/>
     134      <delete file="${installDir}/packages/${jdk.name}.zip"/>
     135      <move file="${installDir}/packages/${jdk.name}" tofile="${installDir}/packages/jdk"/>
     136      <!-- /if -->
    127137    </target>
    128138
Note: See TracChangeset for help on using the changeset viewer.