-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathrelease_testing_setup.sh
executable file
·65 lines (59 loc) · 2.91 KB
/
release_testing_setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Copyright 2020 Google LLC
#
# 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.
# Note: This script uses the currently checked out repo.
set -xe
TESTINGMODE=${1-}
if [ -f "${HOME}/.cocoapods/repos" ]; then
find "${HOME}/.cocoapods/repos" -type d -maxdepth 1 -exec sh -c 'pod repo remove $(basename {})' \;
fi
git fetch --tags --quiet origin main
git checkout main
# The chunk below is to determine the latest version by searching
# Get the latest released tag Cocoapods-X.Y.Z for release and prerelease
# testing, beta version will be excluded.
# Note: If the nightly tag was not updated, check that the next release's tag
# is on the main branch.
test_version=$(git tag -l --sort=-version:refname --merged main 'CocoaPods-*[0-9]' | head -n 1)
if [ -z "$test_version" ]; then
echo "Latest tag could not be found. Exiting." >&2
exit 1
fi
git config --global user.email "[email protected]"
git config --global user.name "google-oss-bot"
git checkout "${podspec_repo_branch}"
# Ensure the tag version including pod version to avoid warnings.
# https://github.com/CocoaPods/Core/blob/e6451e172c33f3aa77a3f8baa7b6b5b8c3b5da14/lib/cocoapods-core/specification/linter.rb#L372-L374
pod_testing_version=`echo "${test_version}" | sed "s/CocoaPods-//"`
if [ "$TESTINGMODE" = "release_testing" ]; then
git checkout "${test_version}"
echo "Podspecs tags of Nightly release testing will be updated to ${test_version}."
# Update source and tag, e.g. ":tag => 'CocoaPods-' + s.version.to_s" to
# ":tag => 'CocoaPods-7.9.0'"
sed -i "" "s/\s*:tag.*/:tag => '${test_version}'/" *.podspec
sed -i "" "s/s\.version[[:space:]]*=.*/s\.version='${pod_testing_version}'/" *.podspec
elif [ "$TESTINGMODE" = "prerelease_testing" ]; then
tag_version="${test_version}.nightly"
echo "A new tag, ${tag_version}, for prerelease testing will be created."
set +e
# If tag_version is new to the remote, remote cannot delete a non-existent
# tag, so error is allowed here.
git push origin --delete "${tag_version}" > /dev/null 2>&1
set -e
git tag -f -a "${tag_version}" -m "release testing"
git push origin "${tag_version}" > /dev/null 2>&1 || echo "Push failed due to expired or insufficient token."
# Update source and tag, e.g. ":tag => 'CocoaPods-' + s.version.to_s" to
# ":tag => ${test_version}.nightly"
sed -i "" "s/\s*:tag.*/:tag => '${tag_version}'/" *.podspec
sed -i "" "s/s\.version[[:space:]]*=.*/s\.version='${pod_testing_version}'/" *.podspec
fi