From 2e8320a59feffc9ba9b762401720d2fffa125d45 Mon Sep 17 00:00:00 2001 From: Conrado Gouvea Date: Thu, 28 Apr 2022 13:28:46 -0300 Subject: [PATCH] add frost; add stylesheet to index --- .github/workflows/gh-pages.yml | 18 +++--------------- index.html | 33 ++++++++++++++++++++------------- zcash-issue-dag.py | 5 +++++ 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 638ea53c..3d688f6d 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -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 diff --git a/index.html b/index.html index 174322b8..966244b3 100644 --- a/index.html +++ b/index.html @@ -1,15 +1,22 @@ - - Zcash Developers Hub - - -

Zcash Developers Hub

-

Eventually this will be a common resource for development teams working on Zcash.

-

Currently this is just hosting DAGs showing dependencies between issues and PRs, for several Zcash teams.

-

ECC core team DAG

-

ECC wallet team DAG

-

ZF DAG

-

Halo2-focused DAG

- - + + + Zcash Foundation DAGs + + + + +

Zcash Foundation DAGs

+
+

Zebra & related repos

+

FROST

+
+ + + + \ No newline at end of file diff --git a/zcash-issue-dag.py b/zcash-issue-dag.py index 72013283..6d5141e9 100755 --- a/zcash-issue-dag.py +++ b/zcash-issue-dag.py @@ -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]