AWS SES setup for Email Notification

2019-09-11 Thread Marcus Little
Getting smtp errors even after confirmed test emails works. Wondering if its a local config or GUI changes needed: ERROR: 530 Authentication required com.sun.mail.smtp.SMTPSendFailedException: 530 Authentication required at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTranspor

how to identify which publisher marked a build as unstable, and how to avoid unstable reports

2019-09-11 Thread Sam Joseph
Hi Everyone, I recently configured our jenkins system to re-run our failing specs to look for intermittently failing ones and open github issues when they passed on a second run. Now sometimes our builds are marked as unstable. It seems like this might be because of the initial failing specs,

RE: jenkins pipeline - how to add another parallel to 2 other parallel.

2019-09-11 Thread Beushausen, Christian
Hi Prashanth, my understanding: What you want to achieve is not possible with declarative pipeline. You should be able to get this done with a scripted pipeline though. Note: Blue Ocean is not able to represent it. Mit freundlichen Gruessen/Best regards, Christian Beushausen I S&T PD SW SWF Int

Kubernetes plugin and podtemplate in declarative pipeline

2019-09-11 Thread jado
Hi, I'm using Jenkins 2.176.2 and Kubernetes Plugin 1.18.1. I defined PodTemplate via GUI with RawYaml definition and i would like to use this in my declarative pipeline: pipeline { > agent { > kubernetes { > cloud 'mycloud' > defaultContainer 'jnlp' > inheritFrom 'my-buildslave' > } > } > Ho

jenkins pipeline - how to add another parallel to 2 other parallel.

2019-09-11 Thread Prashanth Linga
Hello friends / Jenkins Users, I want stage 9 to be parallel to first and second parallel. stage 9 should finish before installer stage. Attached is existing diagram, proposed one to be created. Either declarative or scripted is fine. . Please share your ideas and thanks for taking time to look