Need to re trigger if the Jenkins job fail for scheduled job

2022-12-05 Thread Praju
Hi,
To achieve (Re trigger if the Jenkins job fail when it is  scheduled job  ) 
this one I am Enabling *Retry build after failure in *post build action but 
it will re trigger if we run manually also. Can any one suggest how to re 
trigger job if fail when it is scheduler.  

Thank you

-- 
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/fc7f9e0a-d44b-4bc7-a94e-081fb8b3dbc3n%40googlegroups.com.


Re: I need to fail jenkins job if any linux command return error message

2022-11-22 Thread Praju
Thank you all , it is working for me


On Tuesday, November 22, 2022 at 7:28:29 PM UTC+5:30 db...@cloudbees.com 
wrote:

> On Tue, Nov 22, 2022 at 2:54 PM Praju  wrote:
>
>> Hi ,
>> The above one I am taking as example but actual configuration is:
>>   < python_file> -D&1 2 | tee gen.file.log
>> above command   return "ValueError: No JSON object could be decoded"
>> but the job build status is showing success
>>
>
> set -o pipefail.
>
> You're still asking in the wrong forum.
>
>

-- 
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/c2c7bed2-99d6-4367-9589-190ab1c3f1cbn%40googlegroups.com.


Re: I need to fail jenkins job if any linux command return error message

2022-11-22 Thread Praju
Hi ,
The above one I am taking as example but actual configuration is:
  < python_file> -D&1 2 | tee gen.file.log
above command   return "ValueError: No JSON object could be decoded"
but the job build status is showing success

Thanks

On Tuesday, November 22, 2022 at 6:54:51 PM UTC+5:30 dheinric wrote:

> Am Dienstag, dem 22.11.2022 um 05:11 -0800 schrieb Praju:
>
> echo ${var}  ( Note : I am not defined var)
>
>
> echo NEVER fails. If ${var} is not defined, echo will output an empty 
> string, so you'll see an empty new line in your build's log.
>
> If you want it to fail, you'd need to test whether the variable is 
> defined, maybe like so:
>
> [ -n ${var} ] || exit 1
>
>
> See "man test" for the details.
>
> Bye...
>
> Dirk
>
> -- 
>
> *Dirk Heinrichs*
> Senior Systems Engineer, Delivery Pipeline
> OpenText ™ Discovery | Recommind
> *Phone*: +49 2226 15966 18 <+49%202226%201596618>
> *Email*: dhei...@opentext.com
> *Website*: www.recommind.de
> Recommind GmbH, Von-Liebig-Straße 1, 53359 Rheinbach
> Vertretungsberechtigte Geschäftsführer Gordon Davies, Madhu Ranganathan, 
> Christian Waida, Registergericht Amtsgericht Bonn, Registernummer HRB 10646
> This e-mail may contain confidential and/or privileged information. If you 
> are not the intended recipient (or have received this e-mail in error) 
> please notify the sender immediately and destroy this e-mail. Any 
> unauthorized copying, disclosure or distribution of the material in this 
> e-mail is strictly forbidden
> Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte 
> Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail 
> irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und 
> vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte 
> Weitergabe dieser Mail sind nicht gestattet.
>

-- 
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/d7071e0f-faa1-4620-bf2e-b35063c4ef66n%40googlegroups.com.


Re: I need to fail jenkins job if any linux command return error message

2022-11-22 Thread Praju
Hi,
below is my configuration:

echo "welcome"
echo ${var}  ( Note : I am not defined var)
echo "hello"

expected output status: failure

output:
 
 + echo welcome 
welcome 
 + echo 

  + echo hello 
 hello 
  Finished: SUCCESS 


On Tuesday, November 22, 2022 at 6:20:08 PM UTC+5:30 dheinric wrote:

> Am Dienstag, dem 22.11.2022 um 03:47 -0800 schrieb Praju:
>
> I need to fail jenkins job if any linux command return error message , 
> could any one help one this
>
>
> By default, Jenkins runs "Execute Shell" steps with "/bin/sh -e -x". Due 
> to "-e", the step will fail if any of its commands fail. And if the step 
> fails, the build fails, too.
>
> HTH...
>
> Dirk
>
> -- 
>
> *Dirk Heinrichs*
> Senior Systems Engineer, Delivery Pipeline
> OpenText ™ Discovery | Recommind
> *Phone*: +49 2226 15966 18 <+49%202226%201596618>
> *Email*: dhei...@opentext.com
> *Website*: www.recommind.de
> Recommind GmbH, Von-Liebig-Straße 1, 53359 Rheinbach
> Vertretungsberechtigte Geschäftsführer Gordon Davies, Madhu Ranganathan, 
> Christian Waida, Registergericht Amtsgericht Bonn, Registernummer HRB 10646
> This e-mail may contain confidential and/or privileged information. If you 
> are not the intended recipient (or have received this e-mail in error) 
> please notify the sender immediately and destroy this e-mail. Any 
> unauthorized copying, disclosure or distribution of the material in this 
> e-mail is strictly forbidden
> Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte 
> Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail 
> irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und 
> vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte 
> Weitergabe dieser Mail sind nicht gestattet.
>

-- 
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/18d33024-ffe3-498c-8fcf-b5679ebdabfen%40googlegroups.com.


I need to fail jenkins job if any linux command return error message

2022-11-22 Thread Praju
Hi ,
I need to fail jenkins job if any linux command return error message , 
could any one help one this

Thank you

-- 
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/16344cad-dadf-4c55-a41f-a32acb3b82d9n%40googlegroups.com.