Merge pull request #2 from ZcashFoundation/add-frost

add FROST; revamp index
This commit is contained in:
Marek 2022-05-05 21:11:43 +02:00 committed by GitHub
commit 0c23c5de30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 28 deletions

View File

@ -54,19 +54,6 @@ jobs:
- name: Generate GitHub GraphQL schema module
run: sgqlc-codegen schema github_schema.json github_schema.py
- name: Render ECC core DAG
run: python3 ./zcash-issue-dag.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }}
- name: Render ECC wallet DAG
run: python3 ./zcash-issue-dag.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }}
DAG_VIEW: wallet
- name: Render ZF DAG
run: python3 ./zcash-issue-dag.py
env:
@ -75,12 +62,13 @@ jobs:
DAG_VIEW: zf
SHOW_EPICS: true
- name: Render Halo2-focused DAG
- name: Render ZF FROST DAG
run: python3 ./zcash-issue-dag.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }}
DAG_VIEW: halo2
DAG_VIEW: zf-frost
SHOW_EPICS: true
- name: Copy the index page
run: cp ./index.html ./public

View File

@ -1,15 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>Zcash Developers Hub</title>
</head>
<body>
<h1>Zcash Developers Hub</h1>
<p>Eventually this will be a common resource for development teams working on Zcash.</p>
<p>Currently this is just hosting DAGs showing dependencies between issues and PRs, for several Zcash teams.</p>
<p><a href="zcash-core-dag">ECC core team DAG</a></p>
<p><a href="zcash-wallet-dag">ECC wallet team DAG</a></p>
<p><a href="zcash-zf-dag">ZF DAG</a></p>
<p><a href="zcash-halo2-dag">Halo2-focused DAG</a></p>
</body>
</html>
<head>
<title>Zcash Foundation DAGs</title>
<link rel="stylesheet" href="https://unpkg.com/simpledotcss@2.0.6/simple.css"
integrity="sha256-v8KWnmx4+mlZ/f1S8frggTGREo4BpdgdZ2L2a1ZdmoA=" crossorigin="anonymous">
</head>
<body>
<h1>Zcash Foundation DAGs</h1>
<main>
<p><a href="zcash-zf-dag">Zebra & related repos</a></p>
<p><a href="zcash-zf-frost-dag">FROST</a></p>
</main>
<footer>Generated with a <a href="https://github.com/ZcashFoundation/developers">script</a>
forked from <a href="https://github.com/zcash/developers">ECC</a>.
See also <a href="https://zcash.github.io/developers/">ECC DAGs</a>.
</footer>
</body>
</html>

View File

@ -68,6 +68,10 @@ ZF_REPOS = {
279422254: ('ZcashFoundation', 'zcash_script'),
}
ZF_FROST_REPOS = {
437862440: ('ZcashFoundation', 'frost'),
}
REPO_SETS = {
'core': CORE_REPOS,
'halo2': HALO2_REPOS,
@ -75,6 +79,7 @@ REPO_SETS = {
'wallet-ios': IOS_REPOS,
'wallet-android': ANDROID_REPOS,
'zf': ZF_REPOS,
'zf-frost': ZF_FROST_REPOS,
}
REPOS = REPO_SETS[DAG_VIEW]