Re: Enable "Post Build Action" in Jenkins

2019-09-17 Thread Vijay Gongle
Looks like this is a pipeline job and you wouldn’t have the post build action 
unlike a freestyle job.

Thanks,
Vijay 



> On Sep 17, 2019, at 7:00 PM, Binay Jena  wrote:
> 
> We're missing the "Post Build Actions" tab in Jenkins (attached screengrab 
> FYR). I've tried installing plugins for enabling this, but none of it has 
> worked so far.
> 
> Would appreciate any direction/thoughts with respect to resolving this.
> 
> Jenkins version: 2.164.3
> 
> What other details for the environment would be required to identify what is 
> missing in our environment.. please let me know.
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/1da2e39b-c6ff-404c-8b00-e305e78a90a5%40googlegroups.com.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/C22E4743-9168-42F4-99CD-38436EFD15EB%40gmail.com.


Enable "Post Build Action" in Jenkins

2019-09-17 Thread Binay Jena
We're missing the "Post Build Actions" tab in Jenkins (attached screengrab 
FYR). I've tried installing plugins for enabling this, but none of it has 
worked so far.

Would appreciate any direction/thoughts with respect to resolving this.

*Jenkins version: 2.164.3*

What other details for the environment would be required to identify what 
is missing in our environment.. please let me know.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/1da2e39b-c6ff-404c-8b00-e305e78a90a5%40googlegroups.com.


Enable "Post Build Action" in Jenkins

2019-09-17 Thread Binay Jena
We're missing the "Post Build Actions" tab in Jenkins (attached screengrab 
FYR). I've tried installing plugins for enabling this, but none of it has 
worked so far. Would appreciate any direction/thoughts with respect to 
resolving this.

*Jenkins version: 2.164.3*

What other details for the environment would be required to identify what 
is missing in our environment.. please let me know.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/c9c37c8a-deef-4637-896b-8c1f5d8392a3%40googlegroups.com.


Re: Using multiple AD servers

2019-09-17 Thread Pavel Novák
Hi, 
we were using setup with multiple domains, and it worked, 
recently we reconfigured setup to use kind of global AD catalog, (which is 
wrapping all domains) 

What will happen with jenkins users once you will configure multiple ADs 
and there will be same ID on both domains I am quite not sure, 
I think its readon only ldapID and group membership if its configured, I am 
worrying it will do not read any other parameter, but maybe 


Dne pondělí 16. září 2019 11:09:33 UTC+2 Mike Bayliss napsal(a):
>
> Does anybody have experience with using multiple Active Directory servers?
>
> Specifically, we're looking a case where our users will gradually migrate 
> from one AD domain to another, using a SIDhistory attribute in the new AD 
> to match against the objectSID in the old AD. Is that supported by Jenkins 
> (current LTS server on Linux), or am I going to end up with two distinct 
> user populations?
>
> THanks,
>
> Mike
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/acc45e1f-59ee-4e91-973c-43b796776950%40googlegroups.com.


SSH agent uses username 'jenkins' instead of the one configured in the credential

2019-09-17 Thread DexterMagnific
Hi all,

I have big troubles making 'git' commands inside a pipeline file.

I have the following command:

 stage('Download test database') {
  steps {
sshagent(credentials: ['----']) {*/
  sh 'git submodule update --init --recursive'
}
  }
}

The problem is that git is called with the user 'jenkins' instead of the 
one that is specified inside the credential (which is 'jenkins-serv') I get 
a "permission denied" from the git server.

[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Download test database)
[Pipeline] sh
+ git submodule update --init --recursive
Cloning into '/var/lib/jenkins/workspace/MyProject/testDB'...
jenkins@192.168.20.23: Permission denied (publickey).
fatal: Could not read from remote repository.


Did I miss something on the pipeline setup ?

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/b5f85d92-adfd-496c-b7c8-2d7a34ad4b21%40googlegroups.com.