Re: Integration Jenkins on Server with Bitbucket repo

2020-08-07 Thread Arturo Arenas
You need to expose your local IP Address of Jenkins as external IP so that > it can be connected to Bitbucket cloud. > > -Sathish > > On Fri, Aug 7, 2020 at 6:22 PM Arturo Arenas > wrote: > >> Hello there! >> >> Somebody knows how to integrate a Jenkins hosted on

Integration Jenkins on Server with Bitbucket repo

2020-08-07 Thread Arturo Arenas
Hello there! Somebody knows how to integrate a Jenkins hosted on local sever with Bitbucket repository on cloud and run certain pipeline script when push master? Kind regards and thanks a lot! -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group

Re: script pipeline with rabbitmq

2020-06-16 Thread Arturo Arenas
looks like setup some queues > and db as infrastructure for something else that depends on it? > > On Tue, Jun 16, 2020 at 14:48 Arturo Arenas > wrote: > >> hello everybody !! >> >> someone tried to do this? >> >> node { >> docker.image(

script pipeline with rabbitmq

2020-06-16 Thread Arturo Arenas
hello everybody !! someone tried to do this? node { docker.image('rabbitmq:3').withRun('--rm --hostname test-rabbit --name test-rabbit -p 15672:15672') { c -> docker.image('rabbitmq:3').inside("--link ${c.id}:db") { sh 'rabbitmqctl list_users' } docker.image

Re: error trying to clone submodule

2020-06-11 Thread Arturo Arenas
clean the workspace and rerun the project, seem like a > local permission is wrong into your .git folder. > > check the permission on the file: > > /var/jenkins_home/workspace/myproject/.git/modules/mylib/config > > > > check if the Jenkins user should normally have r/

Re: error trying to clone submodule

2020-06-11 Thread Arturo Arenas
anCheckout']] > > , submoduleCfg: [] > > , userRemoteConfigs: [[credentialsId: 'MyCredsId', url: ' > https://bitbucket.org/mynamepath.git']] > > ]); > > > > the only difference my eyes can spot is > > [$class: 

error trying to clone submodule

2020-06-11 Thread Arturo Arenas
hello, I'm trying to clone a submodule but it's fail. I'm using pipeline script checkout([$class: 'GitSCM', branches: [[name: 'master']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: