You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2021/05/15 07:20:47 UTC

svn commit: r1889910 - /poi/trunk/jenkins/create_jobs.groovy

Author: centic
Date: Sat May 15 07:20:46 2021
New Revision: 1889910

URL: http://svn.apache.org/viewvc?rev=1889910&view=rev
Log:
Jenkins DSL: Make sure to revert module-info.class files

Otherwise CI-builds fail when they were modified by a previous build

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=1889910&r1=1889909&r2=1889910&view=diff
==============================================================================
--- poi/trunk/jenkins/create_jobs.groovy (original)
+++ poi/trunk/jenkins/create_jobs.groovy Sat May 15 07:20:46 2021
@@ -181,6 +181,8 @@ rm -rf examples excelant integrationtest
 
 # show which files are currently modified in the working copy
 svn status || true
+# make sure no changed module-class-files are lingering on
+svn revert poi*/src/*/java9/module-info.class || true
 
 # print out information about which exact version of java we are using
 echo Java-Home: $JAVA_HOME
@@ -214,6 +216,8 @@ def shellCmdsWin =
         '''@echo off
 :: show which files are currently modified in the working copy
 svn status
+:: make sure no changed module-class-files are lingering on
+svn revert poi*\\src\\*\\java9\\module-info.class
 
 :: print out information about which exact version of java we are using
 echo Java-Home: %JAVA_HOME%



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org