Changeset 37345
- Timestamp:
- 2023-02-24T12:06:43+13:00 (4 weeks ago)
- Location:
- main/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/gs-release-builder/envi/etc/tasks/snapshot/task.pl
r36222 r37345 136 136 #dont proceed if main/stable is old 137 137 #get last changed date from svn 138 open( INFO, "svn info http://svn.greenstone.org/main/$ENV{'BRANCH_PATH'}|" )138 open( INFO, "svn --non-interactive --trust-server-cert info https://svn.greenstone.org/main/$ENV{'BRANCH_PATH'}|" ) 139 139 or die "Cant determine age of stable tag"; 140 140 my $changed_date; -
main/trunk/release-kits/kits/rk3/ant-scripts/compile.xml
r36691 r37345 2 2 <project name="rk3-compile"> 3 3 4 4 5 <target name="compile"> 5 6 6 7 <!-- checkout greenstone3 --> 7 8 <exec executable="svn"> 8 <arg value="checkout"/> 9 <arg value="${svn.root}/main/${branch.path}/greenstone3"/> 10 <arg value="compiled"/> 11 <arg value="-r"/><arg value="${branch.revision}"/> 9 <arg line="${global-svn-args}"/> 10 <arg value="checkout"/> 11 <arg value="${svn.root}/main/${branch.path}/greenstone3"/> 12 <arg value="compiled"/> 13 <arg value="-r"/><arg value="${branch.revision}"/> 12 14 </exec> 13 15 … … 51 53 <propertyset refid="forward.properties"/> 52 54 <property name="properties.accepted" value="true"/> 55 <property name="global-svn-args" value="${global-svn-args}"/> 53 56 </ant> 54 57 … … 76 79 <echo>EXPORTING GNOME LIB EXTENSION</echo> 77 80 <exec executable="svn"> 81 <arg line="${global-svn-args}"/> 78 82 <arg value="export"/> 79 83 <arg value="${svn.root}/gs2-extensions/gnome-lib/trunk/gnome-lib-minimal-${specific.os.type}${arch}${extension-x64}.tar.gz"/> … … 103 107 <property name="properties.accepted" value="true"/> 104 108 <property name="properties.keep.src" value="${keep.src}"/> 109 <property name="global-svn-args" value="${global-svn-args}"/> 105 110 </ant> 106 111 … … 185 190 <!--<unzip src="${rk.home}/shared/windows/perl.zip" dest="compiled/gs2build/bin/windows"/>--> 186 191 <exec executable="svn" dir="compiled/gs2build/bin/windows"> 192 <arg line="${global-svn-args}"/> 187 193 <arg value="export"/> 188 194 <arg value="${svn.root}/main/trunk/release-kits/shared/windows/perl.zip"/> … … 223 229 224 230 <exec executable="svn"> 225 <arg value="export"/> 231 <arg line="${global-svn-args}"/> 232 <arg value="export"/> 226 233 <arg value="${svn.root}/gs2-extensions/imagemagick/trunk/imagemagick-linux${extension-x64}.tar.gz"/> 227 234 <arg value="compiled/ext/imagemagick-linux${extension-x64}.tar.gz"/> … … 240 247 <!--<delete dir="compiled/gs2build/bin/linux/imagemagick"/> 241 248 <exec executable="svn"> 249 <arg line="${global-svn-args}"/> 242 250 <arg value="export"/> 243 251 <arg value="${svn.root}/main/${branch.path}/binaries/linux/imagemagick"/> … … 249 257 <!--<delete dir="compiled/gs2build/bin/linux/wv"/> 250 258 <exec executable="svn"> 259 <arg line="${global-svn-args}"/> 251 260 <arg value="export"/> 252 261 <arg value="${svn.root}/main/${branch.path}/binaries/linux/wv"/> … … 261 270 262 271 <!--<exec executable="svn"> 272 <arg line="${global-svn-args}"/> 263 273 <arg value="export"/> 264 274 <arg value="${svn.root}/gs2-extensions/imagemagick/trunk/imagemagick-darwin-10.5.tar.gz"/> … … 278 288 <delete dir="compiled/gs2build/bin/darwin/imagemagick"/> 279 289 <exec executable="svn"> 290 <arg line="${global-svn-args}"/> 280 291 <arg value="export"/> 281 292 <arg value="${svn.root}/main/${branch.path}/binaries/mac/intel/imagemagick"/> … … 287 298 <delete dir="compiled/gs2build/bin/darwin/ghostscript"/> 288 299 <exec executable="svn"> 300 <arg line="${global-svn-args}"/> 289 301 <arg value="export"/> 290 302 <arg value="${svn.root}/main/${branch.path}/binaries/mac/intel/ghostscript"/> -
main/trunk/release-kits/shared/core/ant-scripts/shared.xml
r36219 r37345 57 57 58 58 <!-- svn root --> 59 <property name="svn.root" value="https://svn.greenstone.org" /> 60 59 <property name="svn.root" value="https://svn.greenstone.org"/> 60 61 <!-- any global svn args that need to be used in each call - currently we have ones 62 that mean we can ignore the non trusted certificate, which comes up every 63 three months when our SSL certificate is renewed. --> 64 <property name="global-svn-args" value="--non-interactive --trust-server-cert"/> 61 65 <!-- the minimum version of java which the installer should be run with (this gets used in search4j) --> 62 66 <property name="java.min.version" value="1.8.0_00"/>
Note:
See TracChangeset
for help on using the changeset viewer.