Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

introduce the messier runtime #59

Merged
merged 8 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ jobs:
ssh-private-key: ${{ secrets.SSH_KEY }}

- name: check runtime no-std
run: cargo +nightly check -p hyperbridge-runtime --no-default-features --target=wasm32-unknown-unknown --locked
run: |
cargo +nightly check -p gargantua-runtime --no-default-features --target=wasm32-unknown-unknown --locked
cargo +nightly check -p messier-runtime --no-default-features --target=wasm32-unknown-unknown --locked

fmt:
name: Cargo fmt
Expand Down
192 changes: 128 additions & 64 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[workspace]
resolver = "2"
members = [
# Parachain
"parachain/runtime",
# runtime
"parachain/runtimes/gargantua",
"parachain/runtimes/messier",

# node
"parachain/node",

# ismp
Expand Down Expand Up @@ -40,7 +43,7 @@ cargo-dist-version = "0.4.1"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "powershell", "npm", "homebrew", "msi"]
installers = ["shell", "powershell", "npm"]
# A GitHub repo to push Homebrew formulas to
tap = "polytope-labs/hyperbridge"
# Target platforms to build apps for (Rust target-triple syntax)
Expand All @@ -52,7 +55,7 @@ unix-archive = ".tar.gz"
# A namespace to use when publishing this package to the npm registry
npm-scope = "@polytope-labs"
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
publish-jobs = []
# Publish jobs to run in CI
pr-run-mode = "skip"
allow-dirty = ["ci", "msi"]
Expand Down
2 changes: 1 addition & 1 deletion client/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::types::{
ismp_host::PostRequestEventFilter,
runtime::api::{
ismp::Event as Ev,
runtime_types::{frame_system::EventRecord, hyperbridge_runtime::RuntimeEvent},
runtime_types::{frame_system::EventRecord, gargantua_runtime::RuntimeEvent},
},
};
use anyhow::anyhow;
Expand Down
Loading
Loading