tests(app): 🏓 add voting power assertions to staking tests (#4133) #2683
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Render and Deploy Docs | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Render and deploy protocol and API docs | |
timeout-minutes: 30 | |
runs-on: buildjet-16vcpu-ubuntu-2204 | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
- name: Load Rust caching | |
uses: astriaorg/[email protected] | |
- name: Load get-version action to grab version component of deployment path | |
uses: battila7/get-version-action@v2 | |
id: get_version | |
- name: Print version component of deployment path | |
run: echo ${{ steps.get_version.outputs.version }} | |
# Ostensibly building from source, but the cache-loading above | |
# ensures we don't need to rebuild frequently. | |
- name: Install mdbook dependencies | |
run: cargo install mdbook mdbook-katex mdbook-mermaid mdbook-linkcheck | |
- name: Build software guide | |
run: cd docs/guide && mdbook build | |
- name: Move software guide to subdirectory | |
run: | | |
cd docs/guide | |
rm -rf firebase-tmp | |
mkdir firebase-tmp | |
mv book/html firebase-tmp/${{ steps.get_version.outputs.version }} | |
tree firebase-tmp | |
- name: Deploy software guide to firebase | |
uses: w9jds/[email protected] | |
with: | |
args: deploy | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
PROJECT_ID: penumbra-guide | |
PROJECT_PATH: docs/guide | |
- name: Build protocol spec | |
run: cd docs/protocol && mdbook build | |
- name: Move protocol spec to subdirectory | |
run: | | |
cd docs/protocol | |
rm -rf firebase-tmp | |
mkdir firebase-tmp | |
mv book/html firebase-tmp/${{ steps.get_version.outputs.version }} | |
tree firebase-tmp | |
- name: Deploy protocol spec to firebase | |
uses: w9jds/[email protected] | |
with: | |
args: deploy | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
PROJECT_ID: penumbra-protocol | |
PROJECT_PATH: docs/protocol | |
- name: Build rustdocs | |
run: ./deployments/scripts/rust-docs | |
- name: Move API docs to subdirectory | |
run: | | |
cd docs/rustdoc | |
if [ -d "firebase-tmp" ]; then rm -rf firebase-tmp; fi | |
mkdir firebase-tmp | |
mv ../../target/doc firebase-tmp/${{ steps.get_version.outputs.version }} | |
# Copy in the static index file | |
cp index.html firebase-tmp/${{ steps.get_version.outputs.version }} | |
- name: Deploy API docs to firebase | |
uses: w9jds/[email protected] | |
with: | |
args: deploy | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
PROJECT_ID: penumbra-doc | |
PROJECT_PATH: docs/rustdoc |