mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-10 21:04:40 +00:00
8c74576cf0
Impls a LocalP2p for testing. Moves rebroadcasting into Tendermint, since it's what knows if a message is fully valid + original. Removes TributarySpec::validators() HashMap, as its non-determinism caused different instances to have different round robin schedules. It was already prior moved to a Vec for this issue, so I'm unsure why this remnant existed. Also renames the GH no-std workflow from the prior commit.
21 lines
436 B
YAML
21 lines
436 B
YAML
name: no-std build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Build Dependencies
|
|
uses: ./.github/actions/build-dependencies
|
|
with:
|
|
github-token: ${{ inputs.github-token }}
|
|
|
|
- name: Verify no-std builds
|
|
run: cd tests/no-std && cargo build --target wasm32-unknown-unknown
|