This repository has been archived by the owner on Sep 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
72 lines (59 loc) · 3.04 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="UTF-8"?>
<project name="module-ruby" basedir=".">
<dirname property="project.basedir" file="${ant.file.module-ruby}"/>
<property name="root.dir" location="${project.basedir}/.."/>
<property name="build.properties" value="${project.basedir}/build.properties"/>
<property file="${build.properties}"/>
<!-- Neard dev -->
<property name="dev.path" location="${root.dir}/dev"/>
<fail unless="dev.path" message="Project 'dev' not found in ${dev.path}"/>
<echo message="Neard dev found in ${dev.path}" level="debug"/>
<!-- Import build-commons.xml -->
<import file="${dev.path}/build/build-commons.xml"/>
<!-- Import build-bundle.xml -->
<import file="${dev.path}/build/build-bundle.xml"/>
<target name="release.build">
<basename property="bundle.folder" file="${bundle.path}"/>
<replaceproperty src="bundle.folder" dest="bundle.version" replace="${bundle.name}" with=""/>
<getmoduleuntouched name="${bundle.name}" version="${bundle.version}" propSrcDest="bundle.srcdest" propSrcFilename="bundle.srcfilename"/>
<assertfile file="${bundle.srcdest}/bin/ruby.exe"/>
<!-- Temp copy -->
<copy todir="${bundle.srcdest}" overwrite="true">
<fileset dir="${bundle.path}" defaultexcludes="yes"/>
</copy>
<!-- Download RubyGems -->
<echo message="Download RubyGems"/>
<property name="rubygems.path" location="${bundle.srcdest}/rubygems"/>
<property file="${rubygems.path}/rubygems.properties"/>
<mkdir dir="${rubygems.path}"/>
<get dest="${rubygems.path}/rubygems-update.gem" src="${rubygems}" skipexisting="true"/>
<!-- Install RubyGems -->
<echo message="Install RubyGems"/>
<exec executable="${rubygems.path}/install.bat" dir="${rubygems.path}" failonerror="true"/>
<delete dir="${rubygems.path}"/>
<assertfile file="${bundle.srcdest}/bin/update_rubygems.bat"/>
<!-- Update RubyGems -->
<echo message="Update RubyGems"/>
<exec executable="${bundle.srcdest}/bin/update_rubygems.bat" dir="${bundle.srcdest}/bin" failonerror="true"/>
<!-- Check RubyGems version -->
<echo message="Check RubyGems version"/>
<exec executable="${bundle.srcdest}/bin/gem.bat" dir="${bundle.srcdest}/bin" failonerror="true">
<arg value="--version"/>
</exec>
<!-- Update paths -->
<echo message="Update paths"/>
<replace dir="${bundle.srcdest}/bin" token="${bundle.srcdest}" value="~NEARD_LIN_PATH~/tools/ruby/ruby${bundle.version}">
<exclude name="*.dll,*.exe"/>
</replace>
<delete dir="${bundle.tmp.prep.path}/${bundle.folder}"/>
<mkdir dir="${bundle.tmp.prep.path}/${bundle.folder}"/>
<copy todir="${bundle.tmp.prep.path}/${bundle.folder}" overwrite="true">
<fileset dir="${bundle.srcdest}"/>
</copy>
<copy todir="${bundle.tmp.prep.path}/${bundle.folder}" overwrite="true">
<fileset dir="${bundle.path}" defaultexcludes="yes" excludes="
rubygems/**"
/>
</copy>
</target>
</project>