Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
4a4aaf9
Replaces Event, Call and Origin with new names.
claravanstaden Oct 27, 2022
dd23c62
Updates release branches.
claravanstaden Oct 28, 2022
9d796f3
Fix runtimes
claravanstaden Oct 28, 2022
1f4275d
Update service.
claravanstaden Oct 28, 2022
3807bbe
expose_db and expose_storage functions only available with feature ru…
claravanstaden Oct 28, 2022
6ff86ca
Updates scale info.
claravanstaden Oct 28, 2022
338dcc5
Updates for snowbase
claravanstaden Oct 28, 2022
d8a336e
Updates test parachain. Fixes incorrect logic for benchmarks feature.
claravanstaden Nov 7, 2022
79fff5c
Updates toolchain version.
claravanstaden Nov 7, 2022
da8c755
Updates toolchain version.
claravanstaden Nov 7, 2022
0bb1ed2
Try version.
claravanstaden Nov 7, 2022
3d10476
Fixes benchmarking
claravanstaden Nov 8, 2022
6e330be
Merge branch 'main' of https://github.com/Snowfork/snowbridge into cl…
Nov 8, 2022
e1b8a1f
Attempts installing protoc
claravanstaden Nov 8, 2022
28e7207
Fix benchmarks
claravanstaden Nov 9, 2022
22a1599
Fixes warnings.
claravanstaden Nov 9, 2022
ddf7401
Merge branch 'main' of https://github.com/Snowfork/snowbridge into cl…
Nov 9, 2022
9dbd518
PR comments and fix tests.
claravanstaden Nov 10, 2022
1e69d66
Merge branch 'clara/sno333-upgrade-to-v0.9.30' of https://github.com/…
claravanstaden Nov 10, 2022
8fc8037
Fix benchmarking check logic.
claravanstaden Nov 10, 2022
64c04f6
Update parachain/pallets/incentivized-channel/src/inbound/test.rs
claravanstaden Nov 10, 2022
bc534ad
Merge branch 'main' of https://github.com/Snowfork/snowbridge into cl…
Nov 10, 2022
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
10 changes: 6 additions & 4 deletions .github/workflows/parachain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,18 @@ jobs:
key: ${{ runner.os }}-cargo-${{ hashFiles('parachain/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Install Protoc
uses: arduino/setup-protoc@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable-2022-07-19
toolchain: 1.64.0
Comment thread
doubledup marked this conversation as resolved.
Outdated
target: wasm32-unknown-unknown
- name: cargo check
uses: actions-rs/cargo@v1
with:
command: check
toolchain: stable-2022-07-19
toolchain: 1.64.0
args: >-
--manifest-path parachain/Cargo.toml
--workspace
Expand Down Expand Up @@ -71,7 +73,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable-2022-07-19
toolchain: 1.64.0
target: wasm32-unknown-unknown
- uses: actions-rs/install@v0.1.2
with:
Expand All @@ -93,4 +95,4 @@ jobs:
--features runtime-benchmarks
--avoid-cfg-tarpaulin
--coveralls ${{ secrets.COVERALLS_REPO_TOKEN }}
toolchain: stable-2022-07-19
toolchain: 1.64.0
4 changes: 2 additions & 2 deletions core/packages/test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ cd ../.. && pnpm install
### Polkadot

* Clone the polkadot repository somewhere on your machine
* Checkout tag `v0.9.29`.
* Checkout tag `v0.9.30`.

Example:
```bash
git clone -n https://github.com/paritytech/polkadot.git
cd /path/to/polkadot
git fetch --tags
git checkout v0.9.29
git checkout v0.9.30
cargo build --release
```

Expand Down
Loading