From: Guillaume Abrioux Date: Tue, 8 Oct 2019 16:12:09 +0000 (+0200) Subject: ceph-ansible: don't run podman on stable-3.2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1407%2Fhead;p=ceph-build.git ceph-ansible: don't run podman on stable-3.2 skip podman job when target branch is stable-3.2 since it doesn't support podman. Signed-off-by: Guillaume Abrioux --- diff --git a/ceph-ansible-prs/build/build b/ceph-ansible-prs/build/build index 7d3f90b7..8e73a916 100644 --- a/ceph-ansible-prs/build/build +++ b/ceph-ansible-prs/build/build @@ -28,7 +28,5 @@ popd # In the same logic, clean fact cache rm -rf $HOME/ansible/facts/* -# stable-3.0 doesn't have ceph-volume and therefore doesn't support LVM scenarios. -# Rather than running a bunch of conditional steps in the pipeline to check if -# a PR is merging into the stable-3.0 branch, we'll just pass LVM jobs. -[[ "$ghprbTargetBranch" == "stable-3.0" && "$SCENARIO" == *"lvm"* ]] || start_tox +# stable-3.2 doesn't support podman. +[[ "$ghprbTargetBranch" == "stable-3.2" && "$SCENARIO" == "podman" ]] || start_tox