Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More sophisticated automation of image set generation #486

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
9 changes: 7 additions & 2 deletions imagesets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,19 @@ complete:
pip3 install -e .
which tc-admin
pass git pull
TASKCLUSTER_ROOT_URL=https://community-tc.services.mozilla.com tc-admin diff || true
TASKCLUSTER_ROOT_URL=https://community-tc.services.mozilla.com
TASKCLUSTER_CLIENT_ID=static/taskcluster/root
TASKCLUSTER_ACCESS_TOKEN="$(pass show community-tc/root)"
petemoore marked this conversation as resolved.
Show resolved Hide resolved
unset TASKCLUSTER_CERTIFICATE
tc-admin diff || true
tc-admin diff --ids-only || true
echo
echo 'Applying in 60 seconds (Ctrl-C to abort)....'
echo
sleep 60
petemoore marked this conversation as resolved.
Show resolved Hide resolved
echo 'Applying!'
echo
TASKCLUSTER_ROOT_URL=https://community-tc.services.mozilla.com tc-admin apply
tc-admin apply
cd ../..
rm -rf tc-admin
```
Expand Down