kitingChris
kitingChris

Reputation: 678

jenkins shall fail on errors during rpm install job

I have an deployment task that is executed on my test machine. The purpose is to test the freshly build rpm from jenkins on the very same machine.

Therefore I set up a deploy job in jenkins that executes the following shell lines:

artifact=$(ls build/*.rpm | head -1)
sudo /usr/local/sbin/jenkins-rpm-install $artifact
rm -rf build/

To install the rpm I made a small shell script that jenkins has exclusive sudo permissions for.

#!/bin/sh
#
# allows jenkins to install rpm as privileged user
#
# add the following line to /etc/sudoers:
# jenkins    ALL = NOPASSWD: /usr/local/sbin/jenkins-rpm-install
#

artifact=$1

rpm -vv --install --force $artifact

Now I have the problem: Whenever the rpm install fails jenkins does not recognize the error code and marks the build as success.

Does anyone have an idea how to properly solve this? Also tips to improve this process are welcome.

Upvotes: 0

Views: 639

Answers (2)

luka5z
luka5z

Reputation: 7825

If within configuration you are using execute shell step Jenkins will mark build as failed if exit code!= 0.

If might be sufficient to alter your script by adding exit $? at the end.

Upvotes: 1

Martin
Martin

Reputation: 4030

What about simply checking for rpm error's code in your script and report it to Jenkins yourself?

rpm -vv --install --force $artifact
error_code=$?
if [[ err_code > 0 ]]; then exit $?; fi

Or with overload:

rpm -vv --install --force $artifact || exit $?

Upvotes: 1

Related Questions