mirror of https://github.com/zcash/developers.git
Add DAGs tracking pool deprecations
This commit is contained in:
parent
1e11a1959f
commit
066c72b913
|
@ -121,6 +121,22 @@ jobs:
|
|||
DAG_VIEW: zcashd-deprecation
|
||||
TERMINATE_AT: "zcash/librustzcash#1349,zcash/zcash#5796,zcash/zcash#6453"
|
||||
|
||||
- name: Render Sprout pool deprecation DAG
|
||||
run: python3 ./zcash-issue-dag.py
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }}
|
||||
DAG_VIEW: sprout-deprecation
|
||||
TERMINATE_AT: "zcash/zcash#4202"
|
||||
|
||||
- name: Render transparent pool deprecation DAG
|
||||
run: python3 ./zcash-issue-dag.py
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }}
|
||||
DAG_VIEW: transparent-deprecation
|
||||
TERMINATE_AT: "zcash/zcash#4203"
|
||||
|
||||
- name: Copy the index page
|
||||
run: cp ./index.html ./public
|
||||
|
||||
|
|
|
@ -15,5 +15,7 @@
|
|||
<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>
|
||||
<p><a href="zcash-sprout-deprecation-dag">Sprout pool deprecation DAG</a></p>
|
||||
<p><a href="zcash-transparent-deprecation-dag">Transparent pool deprecation DAG</a></p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -87,6 +87,11 @@ ZCASHD_DEPRECATION_REPOS = {
|
|||
85334928: ('zcash', 'librustzcash'),
|
||||
}
|
||||
|
||||
POOL_DEPRECATION_REPOS = {
|
||||
**CORE_REPOS,
|
||||
**WALLET_REPOS,
|
||||
}
|
||||
|
||||
REPO_SETS = {
|
||||
'core': CORE_REPOS,
|
||||
'halo2': HALO2_REPOS,
|
||||
|
@ -97,6 +102,8 @@ REPO_SETS = {
|
|||
'ecc': ECC_REPOS,
|
||||
'zf': ZF_REPOS,
|
||||
'zcashd-deprecation': ZCASHD_DEPRECATION_REPOS,
|
||||
'sprout-deprecation': POOL_DEPRECATION_REPOS,
|
||||
'transparent-deprecation': POOL_DEPRECATION_REPOS,
|
||||
}
|
||||
|
||||
REPOS = REPO_SETS[DAG_VIEW]
|
||||
|
|
Loading…
Reference in New Issue