Make python version template unversioned

From 2023.1 cycle, TC agree to make python version
template to be unversioned
- https://review.opendev.org/c/openstack/openstack-zuul-jobs/+/856903

This commit updates the release script to update the
unversioned template from next cycle.

Change-Id: Icf03e279bf574f5ff0c0f14b53c4ef76b6098c46
This commit is contained in:
ghanshyam mann 2022-09-10 22:34:15 +05:30 committed by Ghanshyam
parent 25553520db
commit acbfd1d74a
1 changed files with 6 additions and 3 deletions

View File

@ -17,6 +17,8 @@
# License for the specific language governing permissions and limitations
# under the License.
# As in 2023.1 cycle, we switch to using the generic template name to update
# the unit testing, we do not need this script after Zed release.
set -ex
if [[ $# -lt 3 ]]; then
@ -37,10 +39,11 @@ OLDSERIES=${OLDSERIES/stable\//}
cd $REPO
commit_msg="Add Python3 ${SERIES} unit tests
commit_msg="Switch to 2023.1 Python3 unit tests and generic template name
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for ${SERIES}.
is in place for all the of the tested runtimes for ${SERIES}. Also,
updating the template name to generic one.
See also the PTI in governance [1].
@ -53,7 +56,7 @@ fnames=$(find . -type f -path '*zuul.d/*'; find . -type f -name '*zuul.yaml')
for fname in $fnames; do
echo "Checking ${fname}"
sed -i -e \
"s/openstack-python3-${OLDSERIES}-jobs/openstack-python3-${SERIES}-jobs/g" \
"s/openstack-python3-${OLDSERIES}-jobs/openstack-python3-jobs/g" \
$fname
done