-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
225 changed files
with
5,754 additions
and
6,920 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
# re-add directories explicitly. | ||
**/ | ||
!crates/ | ||
!assets/ | ||
!Cargo.toml | ||
!Cargo.lock | ||
!.cargo/ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
*.bin filter=lfs diff=lfs merge=lfs -text | ||
assets/** filter=lfs diff=lfs merge=lfs -text |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,14 +17,8 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
|
||
- name: Install rust toolchain | ||
# The script for rustdoc build requires nightly toolchain. | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
# TODO 2024-02-06: this is pinned due to tkaitchuck/aHash#200, see GH3750. | ||
toolchain: nightly-2024-02-01 | ||
|
||
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 | ||
|
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,50 +65,8 @@ jobs: | |
lfs: true | ||
- name: Install rust toolchain | ||
# The script for rustdoc build requires nightly toolchain. | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
# TODO 2024-02-06: this is pinned due to tkaitchuck/aHash#200, see GH3750. | ||
toolchain: nightly-2024-02-01 | ||
uses: dtolnay/rust-toolchain@nightly | ||
- name: Load rust cache | ||
uses: astriaorg/[email protected] | ||
- name: Build rustdocs | ||
run: ./deployments/scripts/rust-docs | ||
|
||
wasm: | ||
name: Build WASM | ||
runs-on: buildjet-16vcpu-ubuntu-2204 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- name: Install rust toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: wasm32-unknown-unknown | ||
|
||
- name: Load rust cache | ||
uses: astriaorg/[email protected] | ||
|
||
# Download prebuilt binary for wasm-pack; faster than `cargo install`. | ||
- uses: jetli/[email protected] | ||
with: | ||
version: 'latest' | ||
|
||
# Ensure that wasm crate builds cleanly. Is this superfluous, given `wasm-pack test` below? | ||
- name: run wasm-pack build | ||
run: wasm-pack build | ||
working-directory: crates/wasm | ||
|
||
# Download firefox | ||
- uses: browser-actions/setup-firefox@v1 | ||
- run: firefox --version | ||
|
||
- name: Run headless browser tests | ||
run: wasm-pack test --headless --firefox -- --test test_build --target wasm32-unknown-unknown --release --features "mock-database" | ||
working-directory: crates/wasm | ||
|
||
# Always show the results of `cargo tree`, even if the tests failed, since that | ||
# output will be immediately useful in debugging. | ||
- name: display mio deps | ||
run: cargo tree --invert mio --edges features | ||
if: always() | ||
run: ./deployments/scripts/rust-docs |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
| Application version (Name)| Penumbra crate version | CometBFT | | ||
| -------- | -------- | -------- | | ||
| 1 (Testnet 64) | v0.64.0 | v0.37.2 | | ||
| Application version (Name)| Penumbra crate version | CometBFT | Protobuf | | ||
| ------------------------- | ---------------------- | -------- | -------- | | ||
| 1 (Testnet 68) | v0.68.0 | v0.37.2 | v1 | |
Oops, something went wrong.