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

upgrade to polkadot-sdk 1.7.0 #72

Merged
merged 22 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
16d2320
feat(*): upgrade to Polkadot SDK V1.7.0
wd30130 Mar 7, 2024
755e09b
Merge pull request #58 from wd30130/polkadot-v1.7.0
wd30130 Mar 7, 2024
bf65557
Fixed: fixed build chain spec errors
toints Mar 10, 2024
75bda63
Merge pull request #59 from toints/polkadot-v1.7.0
wd30130 Mar 10, 2024
91cd80e
Feat:1.update metadata to polkadot v1.7.0 2.Do not panic when the eve…
sulijia Mar 12, 2024
8c264b3
Node code adapted to Polkadot-SDK 1.7.0
sulijia Mar 15, 2024
3d636cc
Update rust.yml
zachary0809 Mar 18, 2024
c0e85a8
Merge pull request #65 from zachary0809/polkadot-v1.7.1
wd30130 Mar 18, 2024
b54cae8
Fix xcm on Polkadot-SDK-v1.7.0
zachary0809 Mar 18, 2024
f1d1da3
Update rust.yml
zachary0809 Mar 19, 2024
3492712
Update rust.yml
zachary0809 Mar 19, 2024
8c4e46b
Merge pull request #66 from zachary0809/polkadot-v1.7.1
wd30130 Mar 19, 2024
89bd7a3
Merge branch 'Magport:polkadot-v1.7.0' into polkadot-v1.7.0
sulijia Mar 20, 2024
6a7edc8
1.Fix order failure bug 2.Feat:no ordering when bulk mode
sulijia Mar 21, 2024
195c864
Merge pull request #60 from sulijia/polkadot-v1.7.0
Acaishiba Mar 25, 2024
caed4c9
perf(*): update liquidation pallet to polkadot-v1.7.0
toints Mar 29, 2024
031fb06
Gas cost is only calculated in ondemand mode
sulijia Mar 29, 2024
2bed195
Merge pull request #69 from sulijia/polkadot-v1.7.0
wd30130 Mar 29, 2024
44f6507
Merge pull request #37 from Magport/polkadot-v1.7.0
toints Mar 29, 2024
7352585
fix: fixed token precision
toints Apr 1, 2024
7a8fc82
Merge pull request #70 from toints/upstream-polkadot-v1.7.0
Acaishiba Apr 1, 2024
34ca6c1
feat(*): upgrade to polkadot-sdk 1.7.0 (merge branch polkadot-v1.7.0)
wd30130 Apr 2, 2024
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
17 changes: 15 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: Rust

on:
push:
branches: [ "main" ]
branches:
- '**'
pull_request:
branches: [ "main" ]
branches:
- '**'

env:
CARGO_TERM_COLOR: always
Expand All @@ -15,6 +17,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Free up space on runner
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"

- name: Rust Setup
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -44,6 +53,10 @@ jobs:
with:
cache-on-failure: true
cache-all-crates: true

- name: Add rust-src
run: |
rustup component add rust-src

- name: Build
run: cargo check --release
Expand Down
Loading
Loading