diff options
author | Maryam Tahhan <maryam.tahhan@intel.com> | 2017-12-01 14:15:15 +0000 |
---|---|---|
committer | Maryam Tahhan <maryam.tahhan@intel.com> | 2017-12-01 14:15:15 +0000 |
commit | 3700696bfc796d9c560c4605759dda1df9f44b30 (patch) | |
tree | 8628db335ae15cfec245e5813435ccee82c90ca7 /jjb/barometer | |
parent | 5dbffe22b2ec9fc062f2532529de246cbac9c253 (diff) |
barometer: bugfix missing script
Update job to check for missing RPMs and block the artifact upload if there is
an issue.
Change-Id: I8230e82e7bc7c92bd5e87a8c15867ad311089790
Signed-off-by: Maryam Tahhan <maryam.tahhan@intel.com>
Diffstat (limited to 'jjb/barometer')
-rw-r--r-- | jjb/barometer/barometer-build.sh | 1 | ||||
-rw-r--r-- | jjb/barometer/barometer-upload-artifact.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/jjb/barometer/barometer-build.sh b/jjb/barometer/barometer-build.sh index e40841bc2..5f78aae7a 100644 --- a/jjb/barometer/barometer-build.sh +++ b/jjb/barometer/barometer-build.sh @@ -11,6 +11,7 @@ echo cd ci ./install_dependencies.sh ./build_rpm.sh +cp utility/rpms_list $WORKSPACE cd $WORKSPACE # save information regarding artifact into file diff --git a/jjb/barometer/barometer-upload-artifact.sh b/jjb/barometer/barometer-upload-artifact.sh index 0f639b5d9..f05dc2af8 100644 --- a/jjb/barometer/barometer-upload-artifact.sh +++ b/jjb/barometer/barometer-upload-artifact.sh @@ -2,7 +2,7 @@ set -o nounset set -o pipefail -RPM_LIST=$WORKSPACE/ci/utilities/rpms_list +RPM_LIST=$WORKSPACE/rpms_list RPM_WORKDIR=$WORKSPACE/rpmbuild RPM_DIR=$RPM_WORKDIR/RPMS/x86_64/ cd $WORKSPACE/ |