Add a DAG tracking `zcashd` deprecation

This commit is contained in:
Jack Grigg 2024-04-25 00:33:46 +01:00
parent 1304a5d3b7
commit 6d11ba0c4e
3 changed files with 16 additions and 0 deletions

View File

@ -113,6 +113,14 @@ jobs:
SHOW_EPICS: true
continue-on-error: true
- name: Render zcashd deprecation DAG
run: python3 ./zcash-issue-dag.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }}
DAG_VIEW: zcashd-deprecation
TERMINATE_AT: "zcash/librustzcash#1349,zcash/zcash#5796,zcash/zcash#6453"
- name: Copy the index page
run: cp ./index.html ./public

View File

@ -14,5 +14,6 @@
<p><a href="zcash-wallet-android-dag">ECC wallet team Android DAG</a></p>
<p><a href="zcash-wallet-ios-dag">ECC wallet team iOS DAG</a></p>
<p><a href="zcash-zf-dag">ZF DAG</a></p>
<p><a href="zcash-zcashd-deprecation-dag"><code>zcashd</code> deprecation DAG</a></p>
</body>
</html>

View File

@ -81,6 +81,12 @@ ZF_REPOS = {
279422254: ('ZcashFoundation', 'zcash_script'),
}
ZCASHD_DEPRECATION_REPOS = {
26987049: ('zcash', 'zcash'),
47279130: ('zcash', 'zips'),
85334928: ('zcash', 'librustzcash'),
}
REPO_SETS = {
'core': CORE_REPOS,
'halo2': HALO2_REPOS,
@ -90,6 +96,7 @@ REPO_SETS = {
'wallet-android': ANDROID_REPOS,
'ecc': ECC_REPOS,
'zf': ZF_REPOS,
'zcashd-deprecation': ZCASHD_DEPRECATION_REPOS,
}
REPOS = REPO_SETS[DAG_VIEW]