Trying to run multiple test categories

2019-07-04 Thread Macra Alexandru
Hi all, What is the syntax for test categories? For example i have 2 components with automated tests:apples and oranges. If i put them like this: apples,orangesi get an error that i can't use , Thank you! -- You received this message because you are subscribed to the Google Groups "Jenki

how to define multibranch pipeline with jenkinsfile from another repository (or hardcoded)?

2019-07-04 Thread Tom Brus
Hi, I have a repos I want to build all branches for (repos-A). I do not want to put any jenkinsfiles (or any other build related stuff) into this repos. My jenkinsfile lives in a separate repos (repos-B). So I need the branches from repos-A and I need the jenkinsfile to build with from repos-B.

Re: how to define multibranch pipeline with jenkinsfile from another repository (or hardcoded)?

2019-07-04 Thread Daniel Butler
You could use the Pipeline Multibranch Defaults plugin which does the hardcoded in the job approach https://github.com/jenkinsci/pipeline-multibranch-defaults-plugin/blob/master/README.md If a stub file in Repo-A is acceptable you could also use a shared library to store the actual jenkinsfile as

Help with JNLP-agent lost connections, Nothing on Google helps.

2019-07-04 Thread ruslan
Hi Everbody I am fighting with this about 2 weeks and so far no any success. I have read dozen answers on internet about similar troubles - nothing helps. I have upgrade today Java on master and all windows-slave machines to latest 8_211, not helps. Jenkins also is latest 2.183 and all plugins

Jenkins Agents getting disconnected

2019-07-04 Thread Sverre Moe
Lately we have experienced disconnected Agents. Running Jenkins LTS 2.150.1 Java 8u181. Same for both Jenkins server and all build agents. Looking at the log it shows this: ERROR: [07/04/19 14:47:18] [SSH] Error deleting file. java.util.concurrent.TimeoutException at java.util.concurrent.Future

Jenkins and go mod 403 problem

2019-07-04 Thread Jayaraj Wilson
At the onset let me state that I have started using Jenkins only for the past 4 days and am very much a newbie. My source code is in go and across multiple repos on bitbucket and I wanted to create a build pipeline. I started by creating a simple job on jenkins to build. I am almost done but

Re: Memory issues with Jenkins

2019-07-04 Thread Baptiste Mathus
Did you enable GC logging to have a better understanding of the profile of your memory consumption? If not, I would recommend you do it first and analyze them. https://jenkins.io/blog/2016/11/21/gc-tuning/ explained this part (and much more) quite well. Then, once you understand better when it cra

Re: Memory issues with Jenkins

2019-07-04 Thread Jan Monterrubio
Correct me if I’m wrong but I don’t think increasing heap size will actually affect your ability to create more native threads. See this for a possible explanation: https://plumbr.io/outofmemoryerror/unable-to-create-new-native-thread On Thu, Jul 4, 2019 at 16:03 Baptiste Mathus wrote: > Did yo