diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2019-05-12 23:34:29 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2019-05-12 23:34:29 +0000 |
commit | 3f593556296a5e40083bbb91cbbde9fb043143b1 (patch) | |
tree | 03432d330d4df542b1f25c3170bf8b99c190c476 | |
parent | 73bcdb55dabff20d4ae1abcd12760206d9eac1e7 (diff) | |
download | poi-3f593556296a5e40083bbb91cbbde9fb043143b1.tar.gz poi-3f593556296a5e40083bbb91cbbde9fb043143b1.zip |
revert exclude H27 / don't complain on mkdir
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1859163 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | jenkins/create_jobs.groovy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index c418a716dc..e9cdd0f988 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -65,7 +65,7 @@ def poijobs = [ [ name: 'POI-DSL-Github-PullRequests', trigger: '', githubpr: true, skipcigame: true, // ensure the file which is needed from the separate documentation module does exist // as we are checking out from git, we do not have the reference checked out here - addShell: 'mkdir src/documentation\ntouch src/documentation/RELEASE-NOTES.txt' + addShell: 'mkdir -p src/documentation\ntouch src/documentation/RELEASE-NOTES.txt' ], ] @@ -92,7 +92,7 @@ def defaultAnt = 'Ant 1.9 (Latest)' def defaultAntWindows = 'Ant 1.9 (Latest Windows)' // 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&&!H27' +def defaultSlaves = '(ubuntu)&&!beam&&!cloud-slave&&!H15&&!H17&&!H18&&!H24&&!ubuntu-4&&!H21&&!H35' def jdkMapping = [ '1.6': 'JDK 1.6 (latest)', |