See
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/1056/display/redirect?page=changes>
Changes:
[PJ Fanning] Update IOUtils.java
[github] hemf specific limits (#1114)
[PJ Fanning] javadoc
[PJ Fanning] name methods for overriding limits
------------------------------------------
[...truncated 43.76 KiB...]
CellUtil.setCellStyleProperty(c, CellUtil.SHRINK_TO_FIT, true);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:210:
warning: [deprecation] QUOTE_PREFIXED in CellUtil has been deprecated
CellUtil.setCellStyleProperty(c, CellUtil.QUOTE_PREFIXED, true);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:210:
warning: [deprecation] setCellStyleProperty(Cell,String,Object) in CellUtil
has been deprecated
CellUtil.setCellStyleProperty(c, CellUtil.QUOTE_PREFIXED, true);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:278:
warning: [deprecation] BORDER_BOTTOM in CellUtil has been deprecated
CellUtil.setCellStyleProperty(c2, CellUtil.BORDER_BOTTOM,
BorderStyle.DOUBLE);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:278:
warning: [deprecation] setCellStyleProperty(Cell,String,Object) in CellUtil
has been deprecated
CellUtil.setCellStyleProperty(c2, CellUtil.BORDER_BOTTOM,
BorderStyle.DOUBLE);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:317:
warning: [deprecation] BORDER_TOP in CellUtil has been deprecated
props.put(CellUtil.BORDER_TOP, BorderStyle.THIN);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:318:
warning: [deprecation] BORDER_BOTTOM in CellUtil has been deprecated
props.put(CellUtil.BORDER_BOTTOM, BorderStyle.THIN);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:319:
warning: [deprecation] BORDER_LEFT in CellUtil has been deprecated
props.put(CellUtil.BORDER_LEFT, BorderStyle.THIN);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:320:
warning: [deprecation] BORDER_RIGHT in CellUtil has been deprecated
props.put(CellUtil.BORDER_RIGHT, BorderStyle.THIN);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:321:
warning: [deprecation] ALIGNMENT in CellUtil has been deprecated
props.put(CellUtil.ALIGNMENT,
HorizontalAlignment.CENTER.getCode()); // try it both with a Short (deprecated)
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:322:
warning: [deprecation] VERTICAL_ALIGNMENT in CellUtil has been deprecated
props.put(CellUtil.VERTICAL_ALIGNMENT, VerticalAlignment.CENTER);
// and with an enum
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:323:
warning: [deprecation] setCellStyleProperties(Cell,Map<String,Object>) in
CellUtil has been deprecated
CellUtil.setCellStyleProperties(c, props);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:329:
warning: [deprecation] setCellStyleProperties(Cell,Map<String,Object>) in
CellUtil has been deprecated
CellUtil.setCellStyleProperties(c, props);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:602:
warning: [deprecation] FILL_PATTERN in CellUtil has been deprecated
properties.put(CellUtil.FILL_PATTERN, FillPatternType.BRICKS);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:603:
warning: [deprecation] FILL_FOREGROUND_COLOR in CellUtil has been deprecated
properties.put(CellUtil.FILL_FOREGROUND_COLOR,
IndexedColors.BLUE.index);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:604:
warning: [deprecation] FILL_BACKGROUND_COLOR in CellUtil has been deprecated
properties.put(CellUtil.FILL_BACKGROUND_COLOR,
IndexedColors.RED.index);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/BaseTestCellUtil.java>:606:
warning: [deprecation] setCellStyleProperties(Cell,Map<String,Object>) in
CellUtil has been deprecated
CellUtil.setCellStyleProperties(A1, properties);
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:91:
warning: [deprecation] BORDER_TOP in CellUtil has been deprecated
pt.getBorderStyle(0, 0, CellUtil.BORDER_TOP));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:91:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(0, 0, CellUtil.BORDER_TOP));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:94:
warning: [deprecation] BORDER_BOTTOM in CellUtil has been deprecated
pt.getBorderStyle(0, 0, CellUtil.BORDER_BOTTOM));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:94:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(0, 0, CellUtil.BORDER_BOTTOM));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:97:
warning: [deprecation] TOP_BORDER_COLOR in CellUtil has been deprecated
pt.getTemplateProperty(0, 0, CellUtil.TOP_BORDER_COLOR));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:97:
warning: [deprecation] getTemplateProperty(int,int,String) in PropertyTemplate
has been deprecated
pt.getTemplateProperty(0, 0, CellUtil.TOP_BORDER_COLOR));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:100:
warning: [deprecation] BOTTOM_BORDER_COLOR in CellUtil has been deprecated
pt.getTemplateProperty(0, 0, CellUtil.BOTTOM_BORDER_COLOR));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:100:
warning: [deprecation] getTemplateProperty(int,int,String) in PropertyTemplate
has been deprecated
pt.getTemplateProperty(0, 0, CellUtil.BOTTOM_BORDER_COLOR));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:440:
warning: [deprecation] BORDER_TOP in CellUtil has been deprecated
pt.getBorderStyle(i, j, CellUtil.BORDER_TOP));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:440:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j, CellUtil.BORDER_TOP));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:442:
warning: [deprecation] BORDER_BOTTOM in CellUtil has been deprecated
pt.getBorderStyle(i, j, CellUtil.BORDER_BOTTOM));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:442:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j, CellUtil.BORDER_BOTTOM));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:444:
warning: [deprecation] BORDER_LEFT in CellUtil has been deprecated
pt.getBorderStyle(i, j, CellUtil.BORDER_LEFT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:444:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j, CellUtil.BORDER_LEFT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:446:
warning: [deprecation] BORDER_RIGHT in CellUtil has been deprecated
pt.getBorderStyle(i, j, CellUtil.BORDER_RIGHT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:446:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j, CellUtil.BORDER_RIGHT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:458:
warning: [deprecation] BORDER_TOP in CellUtil has been deprecated
CellUtil.BORDER_TOP));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:457:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:461:
warning: [deprecation] BORDER_BOTTOM in CellUtil has been deprecated
CellUtil.BORDER_BOTTOM));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:460:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:464:
warning: [deprecation] BORDER_LEFT in CellUtil has been deprecated
CellUtil.BORDER_LEFT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:463:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:467:
warning: [deprecation] BORDER_RIGHT in CellUtil has been deprecated
CellUtil.BORDER_RIGHT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:466:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:471:
warning: [deprecation] BORDER_TOP in CellUtil has been deprecated
CellUtil.BORDER_TOP));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:470:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:474:
warning: [deprecation] BORDER_BOTTOM in CellUtil has been deprecated
CellUtil.BORDER_BOTTOM));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:473:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:477:
warning: [deprecation] BORDER_LEFT in CellUtil has been deprecated
CellUtil.BORDER_LEFT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:476:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:480:
warning: [deprecation] BORDER_RIGHT in CellUtil has been deprecated
CellUtil.BORDER_RIGHT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:479:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:484:
warning: [deprecation] BORDER_TOP in CellUtil has been deprecated
CellUtil.BORDER_TOP));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:483:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:487:
warning: [deprecation] BORDER_BOTTOM in CellUtil has been deprecated
CellUtil.BORDER_BOTTOM));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:486:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:490:
warning: [deprecation] BORDER_LEFT in CellUtil has been deprecated
CellUtil.BORDER_LEFT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:489:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:493:
warning: [deprecation] BORDER_RIGHT in CellUtil has been deprecated
CellUtil.BORDER_RIGHT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:492:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:499:
warning: [deprecation] BORDER_TOP in CellUtil has been deprecated
CellUtil.BORDER_TOP));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:498:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:502:
warning: [deprecation] BORDER_BOTTOM in CellUtil has been deprecated
CellUtil.BORDER_BOTTOM));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:501:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:505:
warning: [deprecation] BORDER_LEFT in CellUtil has been deprecated
CellUtil.BORDER_LEFT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:504:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:508:
warning: [deprecation] BORDER_RIGHT in CellUtil has been deprecated
CellUtil.BORDER_RIGHT));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:507:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:512:
warning: [deprecation] BORDER_TOP in CellUtil has been deprecated
CellUtil.BORDER_TOP));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:511:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:515:
warning: [deprecation] BORDER_BOTTOM in CellUtil has been deprecated
CellUtil.BORDER_BOTTOM));
^
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi/src/test/java/org/apache/poi/ss/util/TestPropertyTemplate.java>:514:
warning: [deprecation] getBorderStyle(int,int,String) in PropertyTemplate has
been deprecated
pt.getBorderStyle(i, j,
^
> Task :poi-ooxml-full:sourcesJar
> Task :poi-ooxml-lite:compileOoxmlLite
> Task :poi:compileTestJava
Note: Some input files additionally use or override a deprecated API.
Note: Some input files additionally use or override a deprecated API that is
marked for removal.
100 warnings
[Incubating] Problems report is available at:
file://<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/build/reports/problems/problems-report.html>
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':poi-ooxml:compileJava'.
> Compilation failed; see the compiler output below.
<https://ci-builds.apache.org/job/POI/job/POI-DSL-1.17/ws/poi-ooxml/src/main/java/org/apache/poi/xslf/usermodel/XMLSlideShow.java>:637:
error: ')' expected
byte[] data = IOUtils.safelyAllocate(pict.length(), MAX_RECORD_LENGTH
^
1 error
* Try:
> Check your code and dependencies to fix the compilation error(s)
> Run with --scan to get full insights.
Deprecated Gradle features were used in this build, making it incompatible with
Gradle 9.0.
You can use '--warning-mode all' to show the individual deprecation warnings
and determine if they come from your own scripts or plugins.
For more on this, please refer to
https://docs.gradle.org/8.14.3/userguide/command_line_interface.html#sec:command_line_warnings
in the Gradle documentation.
BUILD FAILED in 1m 11s
46 actionable tasks: 39 executed, 5 from cache, 2 up-to-date
Build step 'Invoke Gradle script' changed build result to FAILURE
Build step 'Invoke Gradle script' marked build as failure
[SpotBugs] Skipping execution of recorder since overall result is 'FAILURE'
ERROR: Not all environment variables could be successfully injected. Check for
similarly-named environment variables.
Archiving artifacts
ERROR: Not all environment variables could be successfully injected. Check for
similarly-named environment variables.
Recording test results
ERROR: Not all environment variables could be successfully injected. Check for
similarly-named environment variables.
ERROR: Step ‘Publish JUnit test result report’ failed: No test report files
were found. Configuration error?
ERROR: Not all environment variables could be successfully injected. Check for
similarly-named environment variables.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]