Marking of skipped stages in blue ocean

2019-08-25 Thread Marogo Ytcutc
Hi, I noticed that since version 1.11.0 of the "Blue Ocean" plugin is possibility to mark skipping of selected stages: https://wiki.jenkins.io/display/JENKINS/Blue+Ocean+Plugin "JENKINS-47286 Support skipping stages in scripted pipelines for nice visualization in blue ocean and classic UI stage

Re: Jenkins - link a java package to pipeline

2019-04-15 Thread Marogo Ytcutc
stLinkAPIResults projects = api.getProjects() > api.createTestProject(...) > > > then use it on your pipeline > > ``` > node(){ > sh(label: 'my script', script:'./scripts/my-testlink.groovy') > } > ``` > > El lun., 15 abr. 2019 a las 11:39, Ma

Re: Jenkins - link a java package to pipeline

2019-04-15 Thread Marogo Ytcutc
${env.JOB_NAME} finished with status: ${currentBuild.currentResult}" } } } In console log I received an error: org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed: WorkflowScript: 22: unable to resolve class TestLinkAPIClient @ line 22, column 18. def api =

Re: Jenkins - link a java package to pipeline

2019-04-13 Thread Marogo Ytcutc
Thank You very much for Your help! I will check it on Monday. W dniu sobota, 13 kwietnia 2019 21:09:40 UTC+2 użytkownik Ivan Fernandez Calvo napisał: > > Put the jar file in a folder inside the classpath of the JDK used by your > agent -- You received this message because you are subscribed to

Re: Jenkins - link a java package to pipeline

2019-04-12 Thread Marogo Ytcutc
script and execute this > groovy script from the pipeline, you do not need to include that code in > the pipeline. > > > > El viernes, 12 de abril de 2019, 16:55:08 (UTC+2), Marogo Ytcutc escribió: >> >> I would like to use the TestLinkAPIClient class (java) in my pipe

Jenkins - link a java package to pipeline

2019-04-12 Thread Marogo Ytcutc
I would like to use the TestLinkAPIClient class (java) in my pipeline Jenkins, so I need link these modules to the pipeline, and then run the code below in groovy (found on t