2024.1 is going to be in unmaintained state[1] and tempest is ending the support of 2024.1[2] py3.9 support is dropped in master. To test unmaintained/2024.1, we need to pin tempest to the last compatible tag i.e. 45.0.0. [1] https://review.opendev.org/c/openstack/releases/+/963711 [2] https://review.opendev.org/c/openstack/tempest/+/966346 Depends-On: https://review.opendev.org/c/openstack/tempest/+/966348 Related-Bug: #2130551 Change-Id: I1b34dc8edfa7c90b18d7b09c270863d87b37a3ee Signed-off-by: Yatin Karel <ykarel@redhat.com>
25 lines
842 B
Bash
Executable File
25 lines
842 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
|
|
echo "Ensuring we don't have crazy refs"
|
|
|
|
REFS=`grep BRANCH stackrc | grep -v 'TARGET_BRANCH' | grep -v 'NOVNC_BRANCH' | grep -v 'TEMPEST_BRANCH'`
|
|
rc=$?
|
|
if [[ $rc -eq 0 ]]; then
|
|
echo "Branch defaults must be one of the *TARGET_BRANCH values. Found:"
|
|
echo $REFS
|
|
exit 1
|
|
fi
|