Jenkins will dynamically write the commands in its database into a
script and run it with "-x" and "-e" in order to display each step and
fail after the first step fails.
Now that our commands are stored in Git, ensure that we're doing the
same thing.
Signed-off-by: Ken Dreyer <ken.dreyer@inktank.com>
# This is a script that runs inside Jenkins.
# http://jenkins.ceph.com/job/ceph-build/
+set -x
+set -e
+
# Jenkins will set $RELEASE as a parameter in the job configuration.
if $RELEASE ; then
# This is a formal release. Sign it with the release key.
# This is a script that runs inside Jenkins.
# http://jenkins.ceph.com/job/ceph-package/
+set -x
+set -e
+
#
for dir in * ; do
echo $dir
# This is a script that runs inside Jenkins.
# http://jenkins.ceph.com/job/ceph-setup/
+set -x
+set -e
+
# Jenkins will set $RELEASE as a parameter in the job configuration.
if $RELEASE ; then
# This is a formal release. Sign it with the release key.