Commit 8ed29a7b by Stephanie Closson Committed by GitHub

Toolkit: handle 404 errors gracefully on unpublish in circleci-release-next-packages.sh (#23417)

* handle 404 errors gracefully

* need to redirect stderr to stdout to check for 404s
parent 4a2a2b16
......@@ -10,7 +10,7 @@ function parse_git_hash() {
git rev-parse --short HEAD 2> /dev/null | sed "s/\(.*\)/\1/"
}
function prapare_version_commit () {
function prepare_version_commit () {
echo $'\nCommiting version changes. This commit will not be checked-in!'
git config --global user.email "circleci@grafana.com"
git config --global user.name "CirceCI"
......@@ -18,23 +18,24 @@ function prapare_version_commit () {
}
function unpublish_previous_canary () {
_package=$1
echo $'\nUnpublishing previous canary packages'
for PACKAGE in "${PACKAGES[@]}"
do
# dist-tag next to be changed to canary when https://github.com/grafana/grafana/pull/18195 is merged
CURRENT_CANARY=$(npm view @grafana/"${PACKAGE}" dist-tags.canary)
CURRENT_CANARY=$(npm view @grafana/"${_package}" dist-tags.canary)
if [ -z "${CURRENT_CANARY}" ]; then
echo "@grafana/${PACKAGE} - Nothing to unpublish"
echo "@grafana/${_package} - Nothing to unpublish"
else
echo "Unpublish @grafana/${PACKAGE}@${CURRENT_CANARY}"
npm unpublish "@grafana/${PACKAGE}@${CURRENT_CANARY}" || (
echo "Unpublish @grafana/${_package}@${CURRENT_CANARY}"
_response=$(npm unpublish @grafana/"${_package}"@"${CURRENT_CANARY}" 2>&1) || (
echo "$_response" | grep "404" || (
# We want to deprecate here, rather than fail and return an non-0 exit code
echo "Unpublish unsucessful [$?]. Deprecating @grafana/${PACKAGE}@${CURRENT_CANARY}"
# But if this fails, return the error code
npm deprecate "@grafana/${PACKAGE}@${CURRENT_CANARY}"
echo "Unpublish unsuccessful [$?]. Deprecating @grafana/${_package}@${CURRENT_CANARY}"
_response=$(npm deprecate @grafana/"${_package}"@"${CURRENT_CANARY}" "this package has been deprecated" 2>&1) || (
echo "$_response" | grep "404" && return 0
)
)
)
fi
done
}
# Get current version from lerna.json
......@@ -47,7 +48,7 @@ echo "Current lerna.json version: ${PACKAGE_VERSION}"
# check if there were any changes to packages between current and previous commit
count=$(git diff HEAD~1..HEAD --name-only -- packages | awk '{c++} END {print c}')
count="1"
if [ -z "$count" ]; then
echo "No changes in packages, skipping packages publishing"
else
......@@ -57,6 +58,7 @@ else
echo $'\nGit status:'
git status -s
prepare_version_commit
echo $'\nBuilding packages'
......@@ -68,17 +70,16 @@ else
if [ "${CIRCLE_BRANCH}" == "master" ]; then
exit_if_fail ./scripts/ci-metrics-publisher.sh "grafana.ci-buildtimes.$CIRCLE_JOB.$PACKAGE=$runtime"
fi
done
exit_status=$?
if [ $exit_status -eq 1 ]; then
if [ $exit_status -eq 0 ]; then
unpublish_previous_canary "$PACKAGE"
else
echo "Packages build failed, skipping canary release"
# TODO: notify on slack/email?
exit
fi
prapare_version_commit
unpublish_previous_canary
done
echo $'\nPublishing packages'
yarn packages:publishCanary
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment