Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
Polkadot v1.1.0 (#91)
Browse files Browse the repository at this point in the history
* poladot v1.1.0

* substrate ismp compiles

* fix test

* fmt

* use another nightly toolchain

* CI nightly toolchain changed

* set rust flags

* update ci

* set rust flags with github action

---------

Co-authored-by: David Salami <[email protected]>
Co-authored-by: David Salami <[email protected]>
  • Loading branch information
3 people authored Sep 15, 2023
1 parent d9b78e4 commit 043dae1
Show file tree
Hide file tree
Showing 15 changed files with 1,511 additions and 600 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ concurrency:
jobs:
build_and_test:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-C link-args=-Wl,--allow-multiple-definition"
steps:
- name: Checkout sources
uses: actions/checkout@v3
Expand All @@ -23,7 +25,7 @@ jobs:
- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2022-10-28
toolchain: nightly-2023-08-23
targets: wasm32-unknown-unknown

- name: Install Protoc
Expand All @@ -34,16 +36,16 @@ jobs:

- name: Build
run: |
cargo +nightly-2022-10-28 check --workspace --all-targets --all-features --verbose --locked
cargo +nightly-2023-08-23 check --workspace --all-targets --all-features --verbose --locked
- name: Build `no-std`
run: |
cargo +nightly-2022-10-28 check -p pallet-ismp --no-default-features --target=wasm32-unknown-unknown --verbose --locked
cargo +nightly-2022-10-28 check -p ismp-demo --no-default-features --target=wasm32-unknown-unknown --verbose --locked
cargo +nightly-2023-08-23 check -p pallet-ismp --no-default-features --target=wasm32-unknown-unknown --verbose --locked
cargo +nightly-2023-08-23 check -p ismp-demo --no-default-features --target=wasm32-unknown-unknown --verbose --locked
- name: Test
run: |
cargo +nightly-2022-10-28 test -p pallet-ismp --all-targets --all-features --verbose --locked
cargo +nightly-2023-08-23 test -p pallet-ismp --all-targets --all-features --verbose --locked
lint:
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit 043dae1

Please sign in to comment.