Author: centic
Date: Sat Apr 13 07:41:21 2019
New Revision: 1857449
URL: http://svn.apache.org/viewvc?rev=1857449&view=rev
Log:
Jenkins: Disable one node which is missing the "svn" command
display if svn is available as part of the Test-Environment job
Modified:
poi/trunk/jenkins/create_jobs.groovy
Modified: poi/trunk/jenkins/create_jobs.groovy
URL: http://svn.apache.org/viewvc/poi/trunk/jenkins/create_jobs.groovy?rev=1857449&r1=1857448&r2=1857449&view=diff
==============================================================================
--- poi/trunk/jenkins/create_jobs.groovy (original)
+++ poi/trunk/jenkins/create_jobs.groovy Sat Apr 13 07:41:21 2019
@@ -97,7 +97,8 @@ def defaultEmail = 'dev@poi.apache.org'
def defaultAnt = 'Ant 1.9.9'
// currently a lot of H?? slaves don't have Ant installed ... H21 seems to have a SVN problem
// H35 fails with ImageIO create cache file errors, although the java.io.tmpdir is writable
-def defaultSlaves = '(ubuntu||beam)&&!cloud-slave&&!H15&&!H17&&!H18&&!H24&&!ubuntu-4&&!H21&&!H35'
+def defaultSlaves = '(ubuntu||beam)&&!cloud-slave&&!H15&&!H17&&!H18&&!H24&&!ubuntu-4&&!H21&&!H35'
+
+ '&&!apache-beam-jenkins-8'
def jdkMapping = [
'1.6': 'JDK 1.6 (latest)',
@@ -597,7 +598,8 @@ Unfortunately we often see builds break
runner('DontRun')
steps {
shell(
-'''which javac
+'''which svn
+which javac
javac -version
echo '<?xml version="1.0"?><project name="POI Build" default="test"><target
name="test"><echo>Using Ant: ${ant.version} from ${ant.home}</echo></target></project>'
> build.xml
''')
---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org
|