Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Split out MerkleTree contract and emit CapeBlock as part of BlockCommitted event #1097

Merged
merged 22 commits into from
Jun 3, 2022
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: cachix/cachix-action@v10
with:
name: espresso-systems-private
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"

- uses: actions/checkout@v2
name: Checkout Repository
Expand Down Expand Up @@ -68,6 +68,9 @@ jobs:
- name: Generate Docs
run: nix-shell --run "prepend-timestamps make-doc"

- name: Build all executables
run: nix-shell --run "cargo build --release"

- name: Generate Wallet
run: ./target/release/export-wallet-api-docs --api ./wallet/api/api.toml --assets ./wallet/public/ ./doc/mdbook/book/wallet

Expand All @@ -79,9 +82,6 @@ jobs:
publish_dir: ./doc/mdbook/book/
cname: cape.docs.espressosys.com

- name: Build all executables
run: nix-shell --run "cargo build --release"

- name: Build demo geth data dir
run: nix-shell --run "demo/initialize-demo-geth"

Expand Down
Loading