Add ECC wallet team DAG view

This commit is contained in:
Jack Grigg 2021-06-15 17:06:21 +01:00
parent eebbbe3a63
commit 1e2ac91132
2 changed files with 16 additions and 0 deletions

View File

@ -60,6 +60,13 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }}
- name: Render wallet DAG
run: python3 ./zcash-issue-dag.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }}
DAG_VIEW: wallet
- name: Copy the index page
run: cp ./index.html ./public

View File

@ -31,8 +31,17 @@ CORE_REPOS = {
305835578: ('zcash', 'orchard'),
}
WALLET_REPOS = {
85334928: ('zcash', 'librustzcash'),
151763639: ('zcash', 'zcash-android-wallet-sdk'),
185480114: ('zcash', 'ZcashLightClientKit'),
223814143: ('zcash', 'zcash-android-wallet'),
225922879: ('zcash', 'zcash-ios-wallet'),
}
REPO_SETS = {
'core': CORE_REPOS,
'wallet': WALLET_REPOS,
}
REPOS = REPO_SETS[DAG_VIEW]