Skip to content

Commit

Permalink
Merge pull request #306 from peaqnetwork/feature/1205115997693338_add…
Browse files Browse the repository at this point in the history
…-checkMetadataHash-support

Add checkMetadataHash support for peaq
Update the cargo.lock
  • Loading branch information
sfffaaa authored and Jay Pan committed Oct 29, 2024
1 parent 25b0f1f commit 8cc9069
Show file tree
Hide file tree
Showing 17 changed files with 723 additions and 458 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
release:
types:
- published

workflow_dispatch:

env:
Expand All @@ -20,7 +20,7 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Compile node
uses: addnab/docker-run-action@v2
with:
Expand All @@ -31,16 +31,16 @@ jobs:
options: -v ${{ github.workspace }}:/work
run: |
cd /work
echo "Building tracing enabled wasm"
cargo build --release -p peaq-node-runtime --features "std aura evm-tracing"
cargo build --release -p peaq-node-runtime --features "std aura evm-tracing on-chain-release-build"
echo "Building network node"
cargo build --release
cargo build --release --features on-chain-release-build
- uses: tenhaus/get-release-or-tag@v2
id: tag

- name: Compress peaq node
uses: a7ul/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Check Build
run: |
SKIP_WASM_BUILD=1 cargo check --release
SKIP_WASM_BUILD=1 cargo check --release --features on-chain-release-build
- name: Check Build for Benchmarking
run: >
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
- name: "[Check] cargo test"
run: |
cargo test --release
cargo test --release --features on-chain-release-build
- name: "[Check] cargo clippy"
run: |
cargo clippy --release -- -Dwarnings
cargo clippy --release --features on-chain-release-build -- -Dwarnings
Loading

0 comments on commit 8cc9069

Please sign in to comment.