mirror of
https://github.com/logos-messaging/logos-delivery-rust-bindings.git
synced 2026-07-30 15:03:14 +00:00
examples/ is its own cargo workspace and only examples/basic is a member of the root one, so nothing built from the repo root ever compiled these two. They still used waku_new, set_event_callback, WakuEvent and the WakuNodeHandle typestate, none of which exist any more. Both collapse their App<State> typestate: the node no longer carries one, so neither can the app wrapping it. Event handling shrinks to a single add_on_received_message_listener -- the filter on content topic stays, but the enum match, the JSON parse and the panics on unexpected variants go, since a listener only receives what it registered for. Payloads are base64-decoded by the caller now. The store DTOs (StoreQueryRequest, StoreResponse, StoreWakuMessageResponse) come back as general/store.rs: they are plain serde shapes, and deleting node/store.rs took them out along with the FFI call they sat next to. toy-chat needs them to build the store query JSON and read the response. CI gains a check over examples/Cargo.toml. Without it these rot silently on the next API change, which is exactly how they got here. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
113 lines
2.9 KiB
YAML
113 lines
2.9 KiB
YAML
# copy of https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
|
|
name: CI
|
|
|
|
jobs:
|
|
check:
|
|
name: Build
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- os: ubuntu-latest
|
|
toolchain: stable
|
|
#- os: windows-latest
|
|
# toolchain: stable-x86_64-pc-windows-gnu
|
|
- os: macos-latest
|
|
toolchain: stable
|
|
runs-on: ${{ matrix.os }}
|
|
timeout-minutes: 60
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- name: Checkout submodules
|
|
run: git submodule update --init --recursive
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: ${{ matrix.toolchain }}
|
|
default: true
|
|
override: true
|
|
- uses: actions-rs/cargo@v1
|
|
continue-on-error: false
|
|
with:
|
|
command: check
|
|
# examples/ is its own workspace and only examples/basic is a member of
|
|
# the root one, so a plain `cargo check` here never sees toy-chat or
|
|
# tic-tac-toe-gui. They break silently on any API change without this.
|
|
- uses: actions-rs/cargo@v1
|
|
continue-on-error: false
|
|
with:
|
|
command: check
|
|
args: --manifest-path examples/Cargo.toml --workspace
|
|
|
|
test:
|
|
name: Test
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- os: ubuntu-latest
|
|
toolchain: stable
|
|
#- os: windows-latest
|
|
# toolchain: stable-x86_64-pc-windows-gnu
|
|
- os: macos-latest
|
|
toolchain: stable
|
|
runs-on: ${{ matrix.os }}
|
|
timeout-minutes: 60
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- name: Checkout submodules
|
|
run: git submodule update --init --recursive
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: ${{ matrix.toolchain }}
|
|
default: true
|
|
override: true
|
|
- uses: actions-rs/cargo@v1
|
|
continue-on-error: false
|
|
with:
|
|
command: build
|
|
- uses: actions-rs/cargo@v1
|
|
continue-on-error: false
|
|
with:
|
|
command: test
|
|
|
|
lints:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- name: Checkout submodules
|
|
run: git submodule update --init --recursive
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
override: true
|
|
components: rustfmt, clippy
|
|
|
|
- name: Run cargo fmt
|
|
uses: actions-rs/cargo@v1
|
|
continue-on-error: false
|
|
with:
|
|
command: fmt
|
|
args: --all -- --check
|
|
|
|
- name: Run cargo clippy
|
|
uses: actions-rs/cargo@v1
|
|
continue-on-error: false
|
|
with:
|
|
command: clippy
|
|
args: -- --deny warnings
|