[JBoss JIRA] (ERT-748) [GTK3] Shell dispose slowdown [EBZ#549644]
by Eric Williams (Jira)
[ https://issues.jboss.org/browse/ERT-748?page=com.atlassian.jira.plugin.sy... ]
Eric Williams reassigned ERT-748:
---------------------------------
Sprint: devex #170 Aug 2019
Assignee: Eric Williams
> [GTK3] Shell dispose slowdown [EBZ#549644]
> ------------------------------------------
>
> Key: ERT-748
> URL: https://issues.jboss.org/browse/ERT-748
> Project: Eclipse Release Train
> Issue Type: Task
> Components: Platform
> Reporter: Friendly Jira Robot
> Assignee: Eric Williams
> Priority: Major
> Labels: 4.13_M3, SWT, bzira
>
> Created attachment 279428
> Snippet
> GTK version: 3.22.30
> SWT version: 4928
> With the fix from Bug 547227, SWTBot unit tests are sometimes able to complete on GTK3 successfully. However sometimes the build still fails with Tycho return code 137.
> Running a loop to continuously create and dispose a ControlExample in a Shell shows that the dispose gets progressively slower.
> Doing this with the SWTBot ControlExample (a modified copy) crashes the build after less than 700 iterations, with the dispose time starting around 300 ms and ending around 2,300 ms:
> https://ci.eclipse.org/swtbot/job/swtbot-gerrit/1071/console
> By comparison, the same code with GTK2 on 2018-09 target platform crashes after more than 13,000 iterations, but the dispose time is stable around 50 ms throughout:
> https://ci.eclipse.org/swtbot/job/swtbot-gerrit/1070/console
> The slowdown problem can be reproduced locally using the original ControlExample from SWT. See the included snippet.
> Profiling this snippet shows that the majority of the time is spent in GTK._gtk_widget_destroy[native] for the Shell itself.
> main 100,341 ms (100%) 100,341 ms (100%)
> +SnippetControlExampleDispose.main () 100,341 ms (100%) 100,341 ms (100%)
> +org.eclipse.swt.widgets.Shell.dispose () 64,397 ms (64.2%) 64,397 ms (64.2%)
> +org.eclipse.swt.widgets.Widget.dispose () 64,397 ms (64.2%) 64,397 ms (64.2%)
> +org.eclipse.swt.widgets.Control.release () 64,397 ms (64.2%) 64,397 ms (64.2%)
> +org.eclipse.swt.widgets.Widget.release () 64,397 ms (64.2%) 64,397 ms (64.2%)
> +org.eclipse.swt.widgets.Widget.destroyWidget () 61,443 ms (61.2%) 61,443 ms (61.2%)
> +org.eclipse.swt.internal.gtk.GTK.gtk_widget_destroy () 61,443 ms (61.2%) 61,443 ms (61.2%)
> +org.eclipse.swt.internal.gtk.GTK._gtk_widget_destroy[native] () 61,443 ms (61.2%) 61,443 ms (61.2%)
> +org.eclipse.swt.widgets.Shell.releaseChildren () 2,954 ms (2.9%) 2,954 ms (2.9%)
> +org.eclipse.swt.examples.controlexample.ControlExample.<init> () 35,103 ms (35%) 35,103 ms (35%)
> +org.eclipse.swt.widgets.Shell.<init> () 840 ms (0.8%) 840 ms (0.8%)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 4 months
[JBoss JIRA] (ERT-747) [GTK] Incorrect Table/Tree size [EBZ#546490]
by Eric Williams (Jira)
[ https://issues.jboss.org/browse/ERT-747?page=com.atlassian.jira.plugin.sy... ]
Eric Williams reassigned ERT-747:
---------------------------------
Sprint: devex #170 Aug 2019
Assignee: Eric Williams
> [GTK] Incorrect Table/Tree size [EBZ#546490]
> --------------------------------------------
>
> Key: ERT-747
> URL: https://issues.jboss.org/browse/ERT-747
> Project: Eclipse Release Train
> Issue Type: Task
> Components: Platform
> Reporter: Friendly Jira Robot
> Assignee: Eric Williams
> Priority: Major
> Labels: 4.13_M3, SWT, bzira
>
> Many errors related to Table and Tree size and packing of columns are demonstrated by the included snippets and screenshots.
> Table #1 with no items, 5 columns packed
> expected: height = header height, width = sum of packed columns
> actual 3.10: height = 1 pixel too much, fixed after resize
> actual 3.22: headers not drawn
> Table #2 with no items, 5 columns width=0
> expected: height = header height, width = 0
> actual 3.10: width = 64
> actual 3.22: width = 64
> Table #3 with no items, 5 columns width=100
> expected: height = header height, width = 500
> actual 3.10: all OK
> actual 3.22: headers not drawn
> Table #4 with 5 items, 5 columns width=100
> expected: height = header height + 5 x item height, width = 500
> actual 3.10: height = 5 x item height, fixed after resize
> actual 3.22: height = 5 x item height, fixed after resize
> Table #5 with 5 items, 5 columns packed
> expected: height = header height + 5 x item height, width = 500
> actual 3.10: height = 5 x item height, fixed after resize
> actual 3.22: height = 5 x item height, fixed after resize
> Shell with 5 tables, packed
> expected: height = sum of children heights, width = max of children widths
> actual 3.10: height is more than what is drawn
> actual 3.22: height is more than what is drawn
> Tree #1 with no items, 5 columns packed
> expected: height = header height, width = sum of packed columns
> actual 3.10: size = 64x64
> actual 3.22: size = 64x64
> Tree #2 with no items, 5 columns width=0
> expected: height = header height, width = 0
> actual 3.10: size = 64x64
> actual 3.22: size = 64x64
> Tree #3 with no items, 5 columns width=100
> expected: height = header height, width = 500
> actual 3.10: height = 64, fixed after resize
> actual 3.22: height = 64, fixed after resize but headers no longer drawn
> Tree #4 with 5 items, 5 columns width=100
> expected: height = header height + 5 x item height, width = 500
> actual 3.10: height = 5 x item height, fixed after resize
> actual 3.22: height = 5 x item height, fixed after resize
> Tree #5 with 5 items, 5 columns packed
> expected: height = header height + 5 x item height, width = 500
> actual 3.10: height = 5 x item height, fixed after resize, pack ignores header
> actual 3.22: height = 5 x item height, fixed after resize, pack ignores header
> Shell with 5 trees, packed
> expected: height = sum of children heights, width = max of children widths
> actual 3.10: OK, height is equal to what is drawn
> actual 3.22: OK, height is equal to what is drawn
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 4 months
[JBoss JIRA] (ERT-746) [GTK] DateTime drop-down popup shell does not hiding on focus lost [EBZ#547811]
by Eric Williams (Jira)
[ https://issues.jboss.org/browse/ERT-746?page=com.atlassian.jira.plugin.sy... ]
Eric Williams resolved ERT-746.
-------------------------------
Resolution: Done
> [GTK] DateTime drop-down popup shell does not hiding on focus lost [EBZ#547811]
> -------------------------------------------------------------------------------
>
> Key: ERT-746
> URL: https://issues.jboss.org/browse/ERT-746
> Project: Eclipse Release Train
> Issue Type: Task
> Components: Platform
> Reporter: Friendly Jira Robot
> Assignee: Eric Williams
> Priority: Major
> Labels: SWT, bzira
>
> Debian Stretch
> GTK 3.22.30
> Eclipse SDK 4.12M3.
> When DateTime losts focus or when moving shell, drop down popup does not dissappear.
> It also reflects on GTK2 on SWT 3.108.
> It appears on the main shell of the application, but it does not appear on sub shell with style SWT.ON_TOP.
> If we comment the string DateTime.java:517 (handleFocus(SWT.FocusOut);) everything works fine. But i don't what this popupFilter needs for.
> I also attached snippet and video which reproduce the problem.
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 4 months
[JBoss JIRA] (ERT-748) [GTK3] Shell dispose slowdown [EBZ#549644]
by Friendly Jira Robot (Jira)
Friendly Jira Robot created ERT-748:
---------------------------------------
Summary: [GTK3] Shell dispose slowdown [EBZ#549644]
Key: ERT-748
URL: https://issues.jboss.org/browse/ERT-748
Project: Eclipse Release Train
Issue Type: Task
Components: Platform
Reporter: Friendly Jira Robot
Created attachment 279428
Snippet
GTK version: 3.22.30
SWT version: 4928
With the fix from Bug 547227, SWTBot unit tests are sometimes able to complete on GTK3 successfully. However sometimes the build still fails with Tycho return code 137.
Running a loop to continuously create and dispose a ControlExample in a Shell shows that the dispose gets progressively slower.
Doing this with the SWTBot ControlExample (a modified copy) crashes the build after less than 700 iterations, with the dispose time starting around 300 ms and ending around 2,300 ms:
https://ci.eclipse.org/swtbot/job/swtbot-gerrit/1071/console
By comparison, the same code with GTK2 on 2018-09 target platform crashes after more than 13,000 iterations, but the dispose time is stable around 50 ms throughout:
https://ci.eclipse.org/swtbot/job/swtbot-gerrit/1070/console
The slowdown problem can be reproduced locally using the original ControlExample from SWT. See the included snippet.
Profiling this snippet shows that the majority of the time is spent in GTK._gtk_widget_destroy[native] for the Shell itself.
main 100,341 ms (100%) 100,341 ms (100%)
+SnippetControlExampleDispose.main () 100,341 ms (100%) 100,341 ms (100%)
+org.eclipse.swt.widgets.Shell.dispose () 64,397 ms (64.2%) 64,397 ms (64.2%)
+org.eclipse.swt.widgets.Widget.dispose () 64,397 ms (64.2%) 64,397 ms (64.2%)
+org.eclipse.swt.widgets.Control.release () 64,397 ms (64.2%) 64,397 ms (64.2%)
+org.eclipse.swt.widgets.Widget.release () 64,397 ms (64.2%) 64,397 ms (64.2%)
+org.eclipse.swt.widgets.Widget.destroyWidget () 61,443 ms (61.2%) 61,443 ms (61.2%)
+org.eclipse.swt.internal.gtk.GTK.gtk_widget_destroy () 61,443 ms (61.2%) 61,443 ms (61.2%)
+org.eclipse.swt.internal.gtk.GTK._gtk_widget_destroy[native] () 61,443 ms (61.2%) 61,443 ms (61.2%)
+org.eclipse.swt.widgets.Shell.releaseChildren () 2,954 ms (2.9%) 2,954 ms (2.9%)
+org.eclipse.swt.examples.controlexample.ControlExample.<init> () 35,103 ms (35%) 35,103 ms (35%)
+org.eclipse.swt.widgets.Shell.<init> () 840 ms (0.8%) 840 ms (0.8%)
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 4 months
[JBoss JIRA] (ERT-747) [GTK] Incorrect Table/Tree size [EBZ#546490]
by Friendly Jira Robot (Jira)
Friendly Jira Robot created ERT-747:
---------------------------------------
Summary: [GTK] Incorrect Table/Tree size [EBZ#546490]
Key: ERT-747
URL: https://issues.jboss.org/browse/ERT-747
Project: Eclipse Release Train
Issue Type: Task
Components: Platform
Reporter: Friendly Jira Robot
Many errors related to Table and Tree size and packing of columns are demonstrated by the included snippets and screenshots.
Table #1 with no items, 5 columns packed
expected: height = header height, width = sum of packed columns
actual 3.10: height = 1 pixel too much, fixed after resize
actual 3.22: headers not drawn
Table #2 with no items, 5 columns width=0
expected: height = header height, width = 0
actual 3.10: width = 64
actual 3.22: width = 64
Table #3 with no items, 5 columns width=100
expected: height = header height, width = 500
actual 3.10: all OK
actual 3.22: headers not drawn
Table #4 with 5 items, 5 columns width=100
expected: height = header height + 5 x item height, width = 500
actual 3.10: height = 5 x item height, fixed after resize
actual 3.22: height = 5 x item height, fixed after resize
Table #5 with 5 items, 5 columns packed
expected: height = header height + 5 x item height, width = 500
actual 3.10: height = 5 x item height, fixed after resize
actual 3.22: height = 5 x item height, fixed after resize
Shell with 5 tables, packed
expected: height = sum of children heights, width = max of children widths
actual 3.10: height is more than what is drawn
actual 3.22: height is more than what is drawn
Tree #1 with no items, 5 columns packed
expected: height = header height, width = sum of packed columns
actual 3.10: size = 64x64
actual 3.22: size = 64x64
Tree #2 with no items, 5 columns width=0
expected: height = header height, width = 0
actual 3.10: size = 64x64
actual 3.22: size = 64x64
Tree #3 with no items, 5 columns width=100
expected: height = header height, width = 500
actual 3.10: height = 64, fixed after resize
actual 3.22: height = 64, fixed after resize but headers no longer drawn
Tree #4 with 5 items, 5 columns width=100
expected: height = header height + 5 x item height, width = 500
actual 3.10: height = 5 x item height, fixed after resize
actual 3.22: height = 5 x item height, fixed after resize
Tree #5 with 5 items, 5 columns packed
expected: height = header height + 5 x item height, width = 500
actual 3.10: height = 5 x item height, fixed after resize, pack ignores header
actual 3.22: height = 5 x item height, fixed after resize, pack ignores header
Shell with 5 trees, packed
expected: height = sum of children heights, width = max of children widths
actual 3.10: OK, height is equal to what is drawn
actual 3.22: OK, height is equal to what is drawn
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 4 months
[JBoss JIRA] (JBIDE-26757) PR check job for target platform shows error in log(but its green)
by stephane bouchet (Jira)
[ https://issues.jboss.org/browse/JBIDE-26757?page=com.atlassian.jira.plugi... ]
stephane bouchet commented on JBIDE-26757:
------------------------------------------
seems related to the configuration that indicates to archive the logs and the p2diff files, but none are found :
" No artifacts found that match the file pattern "**/*.p2diff, **/*.log". Configuration error? "
also, the configuration stipulate that the build should not break on errors in the archive step.
maybe this step can be removed ?
> PR check job for target platform shows error in log(but its green)
> ------------------------------------------------------------------
>
> Key: JBIDE-26757
> URL: https://issues.jboss.org/browse/JBIDE-26757
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: build, target-platform
> Affects Versions: 4.13.0.AM1
> Environment: Central CI
> Reporter: Josef Kopriva
> Priority: Minor
>
> Job is green, but there is an error in log:
> {code:java}
> [INFO] BUILD SUCCESS
> 11:35:33 [INFO] ------------------------------------------------------------------------
> 11:35:33 [INFO] Total time: 01:15 h
> 11:35:33 [INFO] Finished at: 2019-07-24T05:35:33-04:00
> 11:35:33 [INFO] Final Memory: 46M/331M
> 11:35:33 [INFO] ------------------------------------------------------------------------
> 11:35:34 Terminating xvnc.
> 11:35:34 $ /usr/bin/vncserver -kill :22
> 11:35:34 Killing Xvnc process ID 11376
> 11:35:40 Archiving artifacts
> 11:35:40 java.lang.InterruptedException: no matches found within 10000
> 11:35:40 at hudson.FilePath$34.hasMatch(FilePath.java:2677)
> 11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2556)
> 11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2546)
> 11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2917)
> 11:35:40 Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to rhel7-devstudio-releng-20433
> 11:35:40 at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1741)
> 11:35:40 at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
> 11:35:40 at hudson.remoting.Channel.call(Channel.java:955)
> 11:35:40 at hudson.FilePath.act(FilePath.java:1036)
> 11:35:40 at hudson.FilePath.act(FilePath.java:1025)
> 11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
> 11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
> 11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
> 11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
> 11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
> 11:35:40 at hudson.model.Run.execute(Run.java:1823)
> 11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
> 11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
> 11:35:40 at hudson.model.Executor.run(Executor.java:429)
> 11:35:40 Caused: hudson.FilePath$TunneledInterruptedException
> 11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2919)
> 11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:212)
> 11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:54)
> 11:35:40 at hudson.remoting.Request$2.run(Request.java:369)
> 11:35:40 at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
> 11:35:40 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> 11:35:40 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
> 11:35:40 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
> 11:35:40 at java.lang.Thread.run(Thread.java:748)
> 11:35:40 Caused: java.lang.InterruptedException: java.lang.InterruptedException: no matches found within 10000
> 11:35:40 at hudson.FilePath.act(FilePath.java:1038)
> 11:35:40 at hudson.FilePath.act(FilePath.java:1025)
> 11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
> 11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
> 11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
> 11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
> 11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
> 11:35:40 at hudson.model.Run.execute(Run.java:1823)
> 11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
> 11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
> 11:35:40 at hudson.model.Executor.run(Executor.java:429)
> 11:35:40 No artifacts found that match the file pattern "**/*.p2diff, **/*.log". Configuration error?
> 11:35:40 [Set GitHub commit status (universal)] SUCCESS on repos [] (sha:e05d75f) with context:jbosstoolstargetplatform-Pull-Request
> 11:35:40 Started calculate disk usage of build
> 11:35:40 Finished Calculation of disk usage of build in 0 seconds
> 11:35:40 Started calculate disk usage of workspace
> 11:35:41 Finished Calculation of disk usage of workspace in 0 seconds
> 11:35:41 Setting status of e05d75f78b8fcfc1dfd76f8687dc15745216b110 to SUCCESS with url https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... and message: 'Build finished. '
> 11:35:41 Using context: Red Hat Jenkins
> 11:35:42 SUCCESSFUL build; See https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... for p2diff and more details.
> 11:35:42
> 11:35:44 Finished: SUCCESS
> {code}
> https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo...
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 4 months
[JBoss JIRA] (JBIDE-26757) PR check job for target platform shows error in log(but its green)
by Josef Kopriva (Jira)
[ https://issues.jboss.org/browse/JBIDE-26757?page=com.atlassian.jira.plugi... ]
Josef Kopriva updated JBIDE-26757:
----------------------------------
Description:
Job is green, but there is an error in log:
{code:java}
[INFO] BUILD SUCCESS
11:35:33 [INFO] ------------------------------------------------------------------------
11:35:33 [INFO] Total time: 01:15 h
11:35:33 [INFO] Finished at: 2019-07-24T05:35:33-04:00
11:35:33 [INFO] Final Memory: 46M/331M
11:35:33 [INFO] ------------------------------------------------------------------------
11:35:34 Terminating xvnc.
11:35:34 $ /usr/bin/vncserver -kill :22
11:35:34 Killing Xvnc process ID 11376
11:35:40 Archiving artifacts
11:35:40 java.lang.InterruptedException: no matches found within 10000
11:35:40 at hudson.FilePath$34.hasMatch(FilePath.java:2677)
11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2556)
11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2546)
11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2917)
11:35:40 Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to rhel7-devstudio-releng-20433
11:35:40 at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1741)
11:35:40 at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
11:35:40 at hudson.remoting.Channel.call(Channel.java:955)
11:35:40 at hudson.FilePath.act(FilePath.java:1036)
11:35:40 at hudson.FilePath.act(FilePath.java:1025)
11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
11:35:40 at hudson.model.Run.execute(Run.java:1823)
11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
11:35:40 at hudson.model.Executor.run(Executor.java:429)
11:35:40 Caused: hudson.FilePath$TunneledInterruptedException
11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2919)
11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:212)
11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:54)
11:35:40 at hudson.remoting.Request$2.run(Request.java:369)
11:35:40 at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
11:35:40 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
11:35:40 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
11:35:40 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
11:35:40 at java.lang.Thread.run(Thread.java:748)
11:35:40 Caused: java.lang.InterruptedException: java.lang.InterruptedException: no matches found within 10000
11:35:40 at hudson.FilePath.act(FilePath.java:1038)
11:35:40 at hudson.FilePath.act(FilePath.java:1025)
11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
11:35:40 at hudson.model.Run.execute(Run.java:1823)
11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
11:35:40 at hudson.model.Executor.run(Executor.java:429)
11:35:40 No artifacts found that match the file pattern "**/*.p2diff, **/*.log". Configuration error?
11:35:40 [Set GitHub commit status (universal)] SUCCESS on repos [] (sha:e05d75f) with context:jbosstoolstargetplatform-Pull-Request
11:35:40 Started calculate disk usage of build
11:35:40 Finished Calculation of disk usage of build in 0 seconds
11:35:40 Started calculate disk usage of workspace
11:35:41 Finished Calculation of disk usage of workspace in 0 seconds
11:35:41 Setting status of e05d75f78b8fcfc1dfd76f8687dc15745216b110 to SUCCESS with url https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... and message: 'Build finished. '
11:35:41 Using context: Red Hat Jenkins
11:35:42 SUCCESSFUL build; See https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... for p2diff and more details.
11:35:42
11:35:44 Finished: SUCCESS
{code}
https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo...
was:
Job is green, but there is an error in log:
{code:java}
[INFO] BUILD SUCCESS
11:35:33 [INFO] ------------------------------------------------------------------------
11:35:33 [INFO] Total time: 01:15 h
11:35:33 [INFO] Finished at: 2019-07-24T05:35:33-04:00
11:35:33 [INFO] Final Memory: 46M/331M
11:35:33 [INFO] ------------------------------------------------------------------------
11:35:34 Terminating xvnc.
11:35:34 $ /usr/bin/vncserver -kill :22
11:35:34 Killing Xvnc process ID 11376
11:35:40 Archiving artifacts
11:35:40 java.lang.InterruptedException: no matches found within 10000
11:35:40 at hudson.FilePath$34.hasMatch(FilePath.java:2677)
11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2556)
11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2546)
11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2917)
11:35:40 Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to rhel7-devstudio-releng-20433
11:35:40 at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1741)
11:35:40 at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
11:35:40 at hudson.remoting.Channel.call(Channel.java:955)
11:35:40 at hudson.FilePath.act(FilePath.java:1036)
11:35:40 at hudson.FilePath.act(FilePath.java:1025)
11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
11:35:40 at hudson.model.Run.execute(Run.java:1823)
11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
11:35:40 at hudson.model.Executor.run(Executor.java:429)
11:35:40 Caused: hudson.FilePath$TunneledInterruptedException
11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2919)
11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:212)
11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:54)
11:35:40 at hudson.remoting.Request$2.run(Request.java:369)
11:35:40 at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
11:35:40 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
11:35:40 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
11:35:40 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
11:35:40 at java.lang.Thread.run(Thread.java:748)
11:35:40 Caused: java.lang.InterruptedException: java.lang.InterruptedException: no matches found within 10000
11:35:40 at hudson.FilePath.act(FilePath.java:1038)
11:35:40 at hudson.FilePath.act(FilePath.java:1025)
11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
11:35:40 at hudson.model.Run.execute(Run.java:1823)
11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
11:35:40 at hudson.model.Executor.run(Executor.java:429)
11:35:40 No artifacts found that match the file pattern "**/*.p2diff, **/*.log". Configuration error?
11:35:40 [Set GitHub commit status (universal)] SUCCESS on repos [] (sha:e05d75f) with context:jbosstoolstargetplatform-Pull-Request
11:35:40 Started calculate disk usage of build
11:35:40 Finished Calculation of disk usage of build in 0 seconds
11:35:40 Started calculate disk usage of workspace
11:35:41 Finished Calculation of disk usage of workspace in 0 seconds
11:35:41 Setting status of e05d75f78b8fcfc1dfd76f8687dc15745216b110 to SUCCESS with url https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... and message: 'Build finished. '
11:35:41 Using context: Red Hat Jenkins
11:35:42 SUCCESSFUL build; See https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... for p2diff and more details.
11:35:42
11:35:44 Finished: SUCCESS
{code}
> PR check job for target platform shows error in log(but its green)
> ------------------------------------------------------------------
>
> Key: JBIDE-26757
> URL: https://issues.jboss.org/browse/JBIDE-26757
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: build, target-platform
> Affects Versions: 4.13.0.AM1
> Environment: Central CI
> Reporter: Josef Kopriva
> Priority: Minor
>
> Job is green, but there is an error in log:
> {code:java}
> [INFO] BUILD SUCCESS
> 11:35:33 [INFO] ------------------------------------------------------------------------
> 11:35:33 [INFO] Total time: 01:15 h
> 11:35:33 [INFO] Finished at: 2019-07-24T05:35:33-04:00
> 11:35:33 [INFO] Final Memory: 46M/331M
> 11:35:33 [INFO] ------------------------------------------------------------------------
> 11:35:34 Terminating xvnc.
> 11:35:34 $ /usr/bin/vncserver -kill :22
> 11:35:34 Killing Xvnc process ID 11376
> 11:35:40 Archiving artifacts
> 11:35:40 java.lang.InterruptedException: no matches found within 10000
> 11:35:40 at hudson.FilePath$34.hasMatch(FilePath.java:2677)
> 11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2556)
> 11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2546)
> 11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2917)
> 11:35:40 Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to rhel7-devstudio-releng-20433
> 11:35:40 at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1741)
> 11:35:40 at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
> 11:35:40 at hudson.remoting.Channel.call(Channel.java:955)
> 11:35:40 at hudson.FilePath.act(FilePath.java:1036)
> 11:35:40 at hudson.FilePath.act(FilePath.java:1025)
> 11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
> 11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
> 11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
> 11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
> 11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
> 11:35:40 at hudson.model.Run.execute(Run.java:1823)
> 11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
> 11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
> 11:35:40 at hudson.model.Executor.run(Executor.java:429)
> 11:35:40 Caused: hudson.FilePath$TunneledInterruptedException
> 11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2919)
> 11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:212)
> 11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:54)
> 11:35:40 at hudson.remoting.Request$2.run(Request.java:369)
> 11:35:40 at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
> 11:35:40 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> 11:35:40 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
> 11:35:40 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
> 11:35:40 at java.lang.Thread.run(Thread.java:748)
> 11:35:40 Caused: java.lang.InterruptedException: java.lang.InterruptedException: no matches found within 10000
> 11:35:40 at hudson.FilePath.act(FilePath.java:1038)
> 11:35:40 at hudson.FilePath.act(FilePath.java:1025)
> 11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
> 11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
> 11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
> 11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
> 11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
> 11:35:40 at hudson.model.Run.execute(Run.java:1823)
> 11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
> 11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
> 11:35:40 at hudson.model.Executor.run(Executor.java:429)
> 11:35:40 No artifacts found that match the file pattern "**/*.p2diff, **/*.log". Configuration error?
> 11:35:40 [Set GitHub commit status (universal)] SUCCESS on repos [] (sha:e05d75f) with context:jbosstoolstargetplatform-Pull-Request
> 11:35:40 Started calculate disk usage of build
> 11:35:40 Finished Calculation of disk usage of build in 0 seconds
> 11:35:40 Started calculate disk usage of workspace
> 11:35:41 Finished Calculation of disk usage of workspace in 0 seconds
> 11:35:41 Setting status of e05d75f78b8fcfc1dfd76f8687dc15745216b110 to SUCCESS with url https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... and message: 'Build finished. '
> 11:35:41 Using context: Red Hat Jenkins
> 11:35:42 SUCCESSFUL build; See https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... for p2diff and more details.
> 11:35:42
> 11:35:44 Finished: SUCCESS
> {code}
> https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo...
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 4 months
[JBoss JIRA] (JBIDE-26757) PR check job for target platform shows error in log
by Josef Kopriva (Jira)
Josef Kopriva created JBIDE-26757:
-------------------------------------
Summary: PR check job for target platform shows error in log
Key: JBIDE-26757
URL: https://issues.jboss.org/browse/JBIDE-26757
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: build, target-platform
Affects Versions: 4.13.0.AM1
Environment: Central CI
Reporter: Josef Kopriva
Job is green, but there is an error in log:
{code:java}
[INFO] BUILD SUCCESS
11:35:33 [INFO] ------------------------------------------------------------------------
11:35:33 [INFO] Total time: 01:15 h
11:35:33 [INFO] Finished at: 2019-07-24T05:35:33-04:00
11:35:33 [INFO] Final Memory: 46M/331M
11:35:33 [INFO] ------------------------------------------------------------------------
11:35:34 Terminating xvnc.
11:35:34 $ /usr/bin/vncserver -kill :22
11:35:34 Killing Xvnc process ID 11376
11:35:40 Archiving artifacts
11:35:40 java.lang.InterruptedException: no matches found within 10000
11:35:40 at hudson.FilePath$34.hasMatch(FilePath.java:2677)
11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2556)
11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2546)
11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2917)
11:35:40 Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to rhel7-devstudio-releng-20433
11:35:40 at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1741)
11:35:40 at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
11:35:40 at hudson.remoting.Channel.call(Channel.java:955)
11:35:40 at hudson.FilePath.act(FilePath.java:1036)
11:35:40 at hudson.FilePath.act(FilePath.java:1025)
11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
11:35:40 at hudson.model.Run.execute(Run.java:1823)
11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
11:35:40 at hudson.model.Executor.run(Executor.java:429)
11:35:40 Caused: hudson.FilePath$TunneledInterruptedException
11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2919)
11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:212)
11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:54)
11:35:40 at hudson.remoting.Request$2.run(Request.java:369)
11:35:40 at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
11:35:40 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
11:35:40 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
11:35:40 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
11:35:40 at java.lang.Thread.run(Thread.java:748)
11:35:40 Caused: java.lang.InterruptedException: java.lang.InterruptedException: no matches found within 10000
11:35:40 at hudson.FilePath.act(FilePath.java:1038)
11:35:40 at hudson.FilePath.act(FilePath.java:1025)
11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
11:35:40 at hudson.model.Run.execute(Run.java:1823)
11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
11:35:40 at hudson.model.Executor.run(Executor.java:429)
11:35:40 No artifacts found that match the file pattern "**/*.p2diff, **/*.log". Configuration error?
11:35:40 [Set GitHub commit status (universal)] SUCCESS on repos [] (sha:e05d75f) with context:jbosstoolstargetplatform-Pull-Request
11:35:40 Started calculate disk usage of build
11:35:40 Finished Calculation of disk usage of build in 0 seconds
11:35:40 Started calculate disk usage of workspace
11:35:41 Finished Calculation of disk usage of workspace in 0 seconds
11:35:41 Setting status of e05d75f78b8fcfc1dfd76f8687dc15745216b110 to SUCCESS with url https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... and message: 'Build finished. '
11:35:41 Using context: Red Hat Jenkins
11:35:42 SUCCESSFUL build; See https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... for p2diff and more details.
11:35:42
11:35:44 Finished: SUCCESS
{code}
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 4 months
[JBoss JIRA] (JBIDE-26757) PR check job for target platform shows error in log(but its green)
by Josef Kopriva (Jira)
[ https://issues.jboss.org/browse/JBIDE-26757?page=com.atlassian.jira.plugi... ]
Josef Kopriva updated JBIDE-26757:
----------------------------------
Summary: PR check job for target platform shows error in log(but its green) (was: PR check job for target platform shows error in log)
> PR check job for target platform shows error in log(but its green)
> ------------------------------------------------------------------
>
> Key: JBIDE-26757
> URL: https://issues.jboss.org/browse/JBIDE-26757
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: build, target-platform
> Affects Versions: 4.13.0.AM1
> Environment: Central CI
> Reporter: Josef Kopriva
> Priority: Minor
>
> Job is green, but there is an error in log:
> {code:java}
> [INFO] BUILD SUCCESS
> 11:35:33 [INFO] ------------------------------------------------------------------------
> 11:35:33 [INFO] Total time: 01:15 h
> 11:35:33 [INFO] Finished at: 2019-07-24T05:35:33-04:00
> 11:35:33 [INFO] Final Memory: 46M/331M
> 11:35:33 [INFO] ------------------------------------------------------------------------
> 11:35:34 Terminating xvnc.
> 11:35:34 $ /usr/bin/vncserver -kill :22
> 11:35:34 Killing Xvnc process ID 11376
> 11:35:40 Archiving artifacts
> 11:35:40 java.lang.InterruptedException: no matches found within 10000
> 11:35:40 at hudson.FilePath$34.hasMatch(FilePath.java:2677)
> 11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2556)
> 11:35:40 at hudson.FilePath$34.invoke(FilePath.java:2546)
> 11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2917)
> 11:35:40 Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to rhel7-devstudio-releng-20433
> 11:35:40 at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1741)
> 11:35:40 at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
> 11:35:40 at hudson.remoting.Channel.call(Channel.java:955)
> 11:35:40 at hudson.FilePath.act(FilePath.java:1036)
> 11:35:40 at hudson.FilePath.act(FilePath.java:1025)
> 11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
> 11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
> 11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
> 11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
> 11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
> 11:35:40 at hudson.model.Run.execute(Run.java:1823)
> 11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
> 11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
> 11:35:40 at hudson.model.Executor.run(Executor.java:429)
> 11:35:40 Caused: hudson.FilePath$TunneledInterruptedException
> 11:35:40 at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2919)
> 11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:212)
> 11:35:40 at hudson.remoting.UserRequest.perform(UserRequest.java:54)
> 11:35:40 at hudson.remoting.Request$2.run(Request.java:369)
> 11:35:40 at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:72)
> 11:35:40 at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> 11:35:40 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
> 11:35:40 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
> 11:35:40 at java.lang.Thread.run(Thread.java:748)
> 11:35:40 Caused: java.lang.InterruptedException: java.lang.InterruptedException: no matches found within 10000
> 11:35:40 at hudson.FilePath.act(FilePath.java:1038)
> 11:35:40 at hudson.FilePath.act(FilePath.java:1025)
> 11:35:40 at hudson.FilePath.validateAntFileMask(FilePath.java:2546)
> 11:35:40 at hudson.tasks.ArtifactArchiver.perform(ArtifactArchiver.java:243)
> 11:35:40 at hudson.tasks.BuildStepCompatibilityLayer.perform(BuildStepCompatibilityLayer.java:81)
> 11:35:40 at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:744)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:690)
> 11:35:40 at hudson.model.Build$BuildExecution.post2(Build.java:186)
> 11:35:40 at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:635)
> 11:35:40 at hudson.model.Run.execute(Run.java:1823)
> 11:35:40 at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
> 11:35:40 at hudson.model.ResourceController.execute(ResourceController.java:97)
> 11:35:40 at hudson.model.Executor.run(Executor.java:429)
> 11:35:40 No artifacts found that match the file pattern "**/*.p2diff, **/*.log". Configuration error?
> 11:35:40 [Set GitHub commit status (universal)] SUCCESS on repos [] (sha:e05d75f) with context:jbosstoolstargetplatform-Pull-Request
> 11:35:40 Started calculate disk usage of build
> 11:35:40 Finished Calculation of disk usage of build in 0 seconds
> 11:35:40 Started calculate disk usage of workspace
> 11:35:41 Finished Calculation of disk usage of workspace in 0 seconds
> 11:35:41 Setting status of e05d75f78b8fcfc1dfd76f8687dc15745216b110 to SUCCESS with url https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... and message: 'Build finished. '
> 11:35:41 Using context: Red Hat Jenkins
> 11:35:42 SUCCESSFUL build; See https://dev-platform-jenkins.rhev-ci-vms.eng.rdu2.redhat.com/job/jbosstoo... for p2diff and more details.
> 11:35:42
> 11:35:44 Finished: SUCCESS
> {code}
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
5 years, 4 months