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

Alphanet Release 1.1.0 #48

Merged
merged 25 commits into from
Jul 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
d29dc42
Add Dockerfile
perrornet Jan 9, 2023
e6fcc89
Add docker run command in readme
perrornet Jan 10, 2023
afb5d29
Merge pull request #46 from subscan-explorer/develop
NZT48 Jan 10, 2023
b88f423
Update to Polkadot v0.9.28
NZT48 Jun 2, 2023
42c0b3c
Update to Polkadot v0.9.29
NZT48 Jun 3, 2023
539b5f4
Update to Pokadot v0.9.30
NZT48 Jun 6, 2023
453c347
Update dependecies and code to support Polkadot v0.9.36
NZT48 Jun 7, 2023
2579360
Update code and dependencies to Polkadot v0.9.37
NZT48 Jun 7, 2023
438fce7
Update code and depdendencies to Polkadot v0.9.40
NZT48 Jun 8, 2023
414a567
Bump versions
NZT48 Jun 8, 2023
219cfc1
Set branches for github actions
NZT48 Jun 8, 2023
03db4cc
Update repository for Frontier dependencies
NZT48 Jun 15, 2023
cac2ee0
Update runtime api for frontier
NZT48 Jun 15, 2023
da6ec71
Set spec version to 111
NZT48 Jun 15, 2023
fe29c8c
Remove commented out code for overrides
NZT48 Jun 15, 2023
90fe6e7
Fix tests for precompiles
NZT48 Jun 16, 2023
22fd38f
Add rust toolchain file
NZT48 Jun 16, 2023
407c531
Turn on rpc-binary-search-estimate feature
NZT48 Jun 19, 2023
b293030
Fix github action for checking links
NZT48 Jun 20, 2023
d6ef6cd
Merge branch 'develop' into feature/polkadot-v0.9.40
NZT48 Jun 20, 2023
1a81e01
Remove broken link from Readme
NZT48 Jun 20, 2023
942cfce
Merge branch 'feature/polkadot-v0.9.40' of https://github.com/OriginT…
NZT48 Jun 20, 2023
78a43bf
Update toolchain for test github action
NZT48 Jun 20, 2023
0e4def3
Update test code github action
NZT48 Jun 20, 2023
8d56ceb
Merge pull request #47 from OriginTrail/feature/polkadot-v0.9.40
NZT48 Jun 30, 2023
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
12 changes: 10 additions & 2 deletions .github/workflows/link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,18 @@ name: Check Links
on:
pull_request:
branches:
- master
- develop
- release/alphanet
- release/devnet
- release/testnet
- release/mainnet
push:
branches:
- master
- develop
- release/alphanet
- release/devnet
- release/testnet
- release/mainnet

jobs:
markdown-link-check:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/mlc_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"ignorePatterns": [
{
"pattern": "^https://crates.io"
},
{
"pattern": "^https://twitter.com"
}
]
}
}
50 changes: 25 additions & 25 deletions .github/workflows/test-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,42 +3,42 @@ name: Test Code
on:
pull_request:
branches:
- master
- develop
- release/alphanet
- release/devnet
- release/testnet
- release/mainnet
push:
branches:
- master
- develop
- release/alphanet
- release/devnet
- release/testnet
- release/mainnet

jobs:
test-code:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:

- name: Checkout Code
uses: actions/checkout@v2

# Steps taken from https://github.com/actions/cache/blob/master/examples.md#rust---cargo
- name: Cache cargo registry
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}

- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2021-04-18
components: rustfmt, clippy
target: wasm32-unknown-unknown
override: true
default: true
uses: actions/checkout@v3

- name: Install linux dependencies
run: sudo apt-get install -y clang libssl-dev llvm libudev-dev protobuf-compiler

- name: Install Rust
run: |
rustup update stable --no-self-update
rustup target add wasm32-unknown-unknown

# Rust cache
- uses: Swatinem/rust-cache@v2

# Enable this for clippy linting.
# - name: Check and Lint Code
# run: cargo +nightly-2020-05-07 clippy -- -D warnings
# run: cargo +nightly clippy -- -D warnings

- name: Check Code
run: cargo check
Expand Down
Loading