Skip to content

Commit

Permalink
test/packaging: Move tests out of nightly
Browse files Browse the repository at this point in the history
Packaging tests will be done under a separate docker job, hence there
will be plenty of time to run them together. Keep DPDK-related builds
in nightly as they are quite sensitive to any changes (especially API
related), hence not very fit for per-patch testing.

Signed-off-by: Michal Berger <[email protected]>
Change-Id: Ia1af5b0e86a503f540c32d2e030088d8a24f8847
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16046
Reviewed-by: Konrad Sztyber <[email protected]>
Reviewed-by: Pawel Piatek <[email protected]>
Tested-by: SPDK CI Jenkins <[email protected]>
Reviewed-by: Jim Harris <[email protected]>
  • Loading branch information
mikeBashStuff authored and jimharris committed Apr 14, 2023
1 parent 6a4b678 commit 095f406
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/packaging/rpm/rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,14 @@ build_shared_native_dpdk_rpm() {
}

run_test "build_shared_rpm" build_shared_rpm
run_test "build_rpm_from_gen_spec" build_rpm_from_gen_spec

if ((RUN_NIGHTLY == 1)); then
run_test "build_shared_rpm_with_rpmed_dpdk" build_rpm_with_rpmed_dpdk
run_test "build_rpm_from_gen_spec" build_rpm_from_gen_spec
if [[ -n $SPDK_TEST_NATIVE_DPDK ]]; then
run_test "build_shared_native_dpdk_rpm" build_shared_native_dpdk_rpm
fi
fi

if [[ -n $SPDK_TEST_NATIVE_DPDK ]]; then
run_test "build_shared_native_dpdk_rpm" build_shared_native_dpdk_rpm
fi

rm -rf "$builddir"

0 comments on commit 095f406

Please sign in to comment.