summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe <gheorghe@ca.ibm.com>2011-10-07 10:56:53 -0400
committerBogdan Gheorghe <gheorghe@ca.ibm.com>2011-10-07 10:57:48 -0400
commit086cfc8a91bf07d934d502f0b34d4da4abd9aa31 (patch)
treecb891bfbacf66e59f3c11e1f938e6101b7d6408a
parente9f12754015493ac55bc996c9b2b653951ebc7cd (diff)
downloadeclipse.platform.swt-086cfc8a91bf07d934d502f0b34d4da4abd9aa31.tar.gz
eclipse.platform.swt-086cfc8a91bf07d934d502f0b34d4da4abd9aa31.tar.xz
eclipse.platform.swt-086cfc8a91bf07d934d502f0b34d4da4abd9aa31.zip
Prevent hanging git jobs
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index be663b5d2e..1e2c9b01d8 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -1060,20 +1060,20 @@
<param name="repo" value="eclipse.platform.swt"/>
<param name="repo.exists" value="repo.src.exists"/>
</antcall>
- <exec dir="../../../../${TAG}/eclipse.platform.swt" executable="git" failonerror="true">
+ <exec dir="../../../../${TAG}/eclipse.platform.swt" executable="git" failonerror="true" timeout="900000">
<arg line="fetch"/>
</exec>
- <exec dir="../../../../${TAG}/eclipse.platform.swt" executable="git" failonerror="true">
+ <exec dir="../../../../${TAG}/eclipse.platform.swt" executable="git" failonerror="true" timeout="900000">
<arg line="reset --hard origin/${TAG}"/>
</exec>
<antcall target="init_repo">
<param name="repo" value="eclipse.platform.swt.binaries"/>
<param name="repo.exists" value="repo.bin.exists"/>
</antcall>
- <exec dir="../../../../${TAG}/eclipse.platform.swt.binaries" executable="git" failonerror="true">
+ <exec dir="../../../../${TAG}/eclipse.platform.swt.binaries" executable="git" failonerror="true" timeout="900000">
<arg line="fetch"/>
</exec>
- <exec dir="../../../../${TAG}/eclipse.platform.swt.binaries" executable="git" failonerror="true">
+ <exec dir="../../../../${TAG}/eclipse.platform.swt.binaries" executable="git" failonerror="true" timeout="900000">
<arg line="reset --hard origin/${TAG}"/>
</exec>
</target>