diff options
author | Dan Radez <dradez@redhat.com> | 2016-08-18 12:20:01 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-08-18 12:20:01 +0000 |
commit | 22e8ced8778bbfcf1f396abf4a829cf0564ba90a (patch) | |
tree | 6994e9da5c610771a20de8a6afaf9ff90009a937 /ci/build.sh | |
parent | 92ecd83a55059b938ea92bfe0c351621f0826f2c (diff) | |
parent | e025c67845061b21b379c721477e93f80e57f4aa (diff) |
Merge "Moving rpm spec files to a sub directory"
Diffstat (limited to 'ci/build.sh')
-rwxr-xr-x | ci/build.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ci/build.sh b/ci/build.sh index af065b11..f3ab497d 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -120,19 +120,19 @@ if [[ "$MAKE_TARGETS" == "images" ]]; then MAKE_TARGETS+=" rpms-check" else # Spec files are selective - if [[ $commit_file_list == *build/opnfv-apex-undercloud.spec* ]]; then + if [[ $commit_file_list == *build/rpm_specs/opnfv-apex-undercloud.spec* ]]; then MAKE_TARGETS+=" undercloud-rpm-check" fi - if [[ $commit_file_list == *build/opnfv-apex-common.spec* ]]; then + if [[ $commit_file_list == *build/rpm_specs/opnfv-apex-common.spec* ]]; then MAKE_TARGETS+=" common-rpm-check" fi - if [[ $commit_file_list == *build/opnfv-apex.spec* ]]; then + if [[ $commit_file_list == *build/rpm_specs/opnfv-apex.spec* ]]; then MAKE_TARGETS+=" opendaylight-rpm-check" fi - if [[ $commit_file_list == *build/opnfv-apex-onos.spec* ]]; then + if [[ $commit_file_list == *build/rpm_specs/opnfv-apex-onos.spec* ]]; then MAKE_TARGETS+=" onos-rpm-check" fi - if [[ $commit_file_list == *build/opnfv-apex-opendaylight-sfc.spec* ]]; then + if [[ $commit_file_list == *build/rpm_specs/opnfv-apex-opendaylight-sfc.spec* ]]; then MAKE_TARGETS+=" opendaylight-sfc-rpm-check" fi fi |