diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 7535d7b..5c85314 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -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 diff --git a/index.html b/index.html index 6266a30..f3c42e1 100644 --- a/index.html +++ b/index.html @@ -15,5 +15,7 @@

ECC wallet team iOS DAG

ZF DAG

zcashd deprecation DAG

+

Sprout pool deprecation DAG

+

Transparent pool deprecation DAG

diff --git a/zcash-issue-dag.py b/zcash-issue-dag.py index e16d4a4..241aaca 100755 --- a/zcash-issue-dag.py +++ b/zcash-issue-dag.py @@ -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]