Bug 1910620 - Port bug 1850914: Add script to update test parameters.yml. r=dandarnell

Differential Revision: https://phabricator.services.mozilla.com/D218162

--HG--
rename : taskcluster/test/params/cb-promote.yml => taskcluster/test/params/cb-promote-thunderbird.yml
rename : taskcluster/test/params/cb-push.yml => taskcluster/test/params/cb-push-thunderbird.yml
rename : taskcluster/test/params/cb-ship.yml => taskcluster/test/params/cb-ship-thunderbird.yml
rename : taskcluster/test/params/cr-promote.yml => taskcluster/test/params/cr-promote-thunderbird.yml
rename : taskcluster/test/params/cr-push.yml => taskcluster/test/params/cr-push-thunderbird.yml
rename : taskcluster/test/params/cr-ship.yml => taskcluster/test/params/cr-ship-thunderbird.yml
extra : amend_source : b004ff4fadf05073039b39520b66dfd5723950a5
This commit is contained in:
Rob Lemley 2024-08-06 11:33:26 +01:00
Родитель 99d06d3cc8
Коммит 26111e8819
9 изменённых файлов: 114 добавлений и 0 удалений

Просмотреть файл

@ -1,4 +1,8 @@
---
ignore: |
*node_modules*
**/test/params/
extends: default
rules:

Просмотреть файл

@ -13,6 +13,7 @@ from comm_taskgraph.parameters import register_parameters
class TestCommParameters(unittest.TestCase):
vals = {
"android_perftest_backstop": True,
"app_version": "app_version",
"backstop": False,
"base_repository": "base_repository",

109
taskcluster/test/params/update.sh Executable file
Просмотреть файл

@ -0,0 +1,109 @@
#!/bin/bash
set -ex
TASKCLUSTER_ROOT_URL=https://firefox-ci-tc.services.mozilla.com
dir=$(dirname "$0")
if [ -n "$1" ]; then
files=( "$@" )
else
mapfile -t files < <( ls -1 "$dir"/*.yml )
fi
for f in "${files[@]}"; do
base=$(basename "$f" .yml)
repo=${base%%-*}
action=${base#*-}
# remove people's email addresses
filter='.owner="user@example.com"'
case $repo in
cc)
repo=comm-central
;;
cb)
repo=comm-beta
;;
cr)
repo=comm-release
;;
ce)
version=$(curl -s https://product-details.mozilla.org/1.0/thunderbird_versions.json | jq -r .THUNDERBIRD_ESR)
version=${version%%.*}
repo=comm-esr${version}
# unset enable_always_target to fall back to the default, to avoid
# generating a broken graph with esr115 params
filter="$filter | del(.enable_always_target)"
;;
try)
continue
;;
*)
echo unknown repo "$repo" >&2
exit 1
;;
esac
case $action in
onpush)
task=comm.v2.${repo}.latest.taskgraph.decision
service=index
# find a non-DONTBUILD push
while :; do
params=$(curl -f -L "${TASKCLUSTER_ROOT_URL}/api/${service}/v1/task/${task}/artifacts/public%2Fparameters.yml")
method=$(echo "$params" | yq -r .target_tasks_method)
if [ "$method" != "nothing" ]; then
break
fi
pushlog_id=$(echo "$params" | yq -r .pushlog_id)
task=comm.v2.${repo}.pushlog-id.$((pushlog_id - 1)).decision
done
;;
cron-*)
task=${action#cron-}
task=comm.v2.${repo}.latest.taskgraph.decision-${task}
service=index
;;
nightly-desktop)
task=comm.v2.${repo}.latest.taskgraph.decision-nightly-desktop
service=index
;;
push*|promote*|ship*)
case $action in
*-partials)
action="${action%-partials}"
;;
*)
filter="$filter | .release_history={}"
;;
esac
# shellcheck disable=SC2034
suffix=
case $action in
*-thunderbird)
product=thunderbird
action=${action%-$product}
phase=${action}_${product}
;;
*)
echo unknown action "$action" >&2
exit 1
;;
esac
# grab the action task id from the latest release where this phase wasn't skipped
task=$(curl -s "https://shipitapi-public.services.mozilla.com/releases?product=${product}&branch=releases/${repo}&status=shipped" | \
jq -r "map(.phases[] | select(.name == "'"'"$phase"'"'" and (.skipped | not)))[-1].actionTaskId")
service=queue
;;
*merge-automation)
# these tasks have no useful indexes; unable to update them automatically
continue
;;
*)
echo unknown action "$action" >&2
exit 1
;;
esac
curl -f -L "${TASKCLUSTER_ROOT_URL}/api/${service}/v1/task/${task}/artifacts/public%2Fparameters.yml" | yq -y "$filter" > "${f}"
done