From dbec12e8853e504bd3710ac8522a163870914a3a Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Fri, 8 Jul 2022 18:18:52 +0200 Subject: [PATCH] ceph-volume-ansible-prs: various fixes - enforce py39 - add quincy release Signed-off-by: Guillaume Abrioux --- ceph-volume-ansible-prs/build/build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ceph-volume-ansible-prs/build/build b/ceph-volume-ansible-prs/build/build index f1b578a4..22058092 100644 --- a/ceph-volume-ansible-prs/build/build +++ b/ceph-volume-ansible-prs/build/build @@ -12,7 +12,8 @@ github_status_setup pkgs=( "tox" "github-status>0.0.3" ) TEMPVENV=$(create_venv_dir) VENV=${TEMPVENV}/bin -install_python_packages $TEMPVENV "pkgs[@]" +set_centos_python3_version "python3.9" +install_python_packages $TEMPVENV "pkgs[@]" "pip==22.0.4" GITHUB_STATUS_STATE="pending" $VENV/github-status create @@ -34,6 +35,8 @@ elif [[ "$ghprbTargetBranch" == "octopus" ]]; then CEPH_ANSIBLE_BRANCH="stable-5.0" elif [[ "$ghprbTargetBranch" == "pacific" ]]; then CEPH_ANSIBLE_BRANCH="stable-6.0" +elif [[ "$ghprbTargetBranch" == "quincy" ]]; then + CEPH_ANSIBLE_BRANCH="stable-7.0" else CEPH_ANSIBLE_BRANCH="main" fi -- 2.39.5