git.delta.rocks / unique-network / refs/commits / 86f1faca1382

difftreelog

update rust and polkadot version

Igor Kozyrev2021-09-15parent: #cd42058.patch.diff
in: master

2 files changed

modifiedREADME.mddiffbeforeafterboth
--- a/README.md
+++ b/README.md
@@ -63,17 +63,17 @@
 
 2. Remove all installed toolchains with `rustup toolchain list` and `rustup toolchain uninstall <toolchain>`.
 
-3. Install install nightly 2021-03-01 and make it default:
+3. Install install nightly 2021-06-28 and make it default:
 
 ```bash
-rustup toolchain install nightly-2021-03-01
-rustup default nightly-2021-03-01
+rustup toolchain install nightly-2021-06-28
+rustup default nightly-2021-06-28
 ```
 
 4. Add wasm target for nightly toolchain:
 
 ```bash
-rustup target add wasm32-unknown-unknown --toolchain nightly-2021-03-01
+rustup target add wasm32-unknown-unknown --toolchain nightly-2021-06-28
 ```
 
 5. Build:
@@ -135,7 +135,7 @@
 
 ## Building and Running as Parachain locally
 
-Rust toolchain: nightly-2021-04-23
+Rust toolchain: nightly-2021-06-28
 Note: checkout this project and polkadot project (see below) in the sibling folders (both under the same folder)
 
 ### Build relay
@@ -143,7 +143,7 @@
 ```
 git clone https://github.com/paritytech/polkadot.git
 cd polkadot
-git checkout aa386760
+git checkout release-v0.9.9
 cargo build --release
 ```
 
@@ -208,12 +208,12 @@
 
 First of all, add rust toolchain and make it default.
 ```bash
-rustup target add wasm32-unknown-unknown --toolchain nightly-2020-10-01
+rustup target add wasm32-unknown-unknown --toolchain nightly-2021-06-28
 ```
 
 Then in "/node/src" run build command below
 ```bash
-cargo +nightly-2020-10-01 build --release --features runtime-benchmarks
+cargo +nightly-2021-06-28 build --release --features runtime-benchmarks
 ```
 
 Run benchmark
modifiedtests/README.mddiffbeforeafterboth
before · tests/README.md
1# Tests23## Prepare test environment451. Checkout polkadot in sibling folder with this project6```bash7git clone https://github.com/paritytech/polkadot.git && cd polkadot8git checkout aa38676099```10112. Build with nightly-2021-04-2312```bash13cargo build --release14```15163. Build the project17184. Checkout polkadot-launch in the sibling folder:19```bash20git clone https://github.com/paritytech/polkadot-launch && cd polkadot-launch21```22235. Run launch-test-env.sh from the root of this project242526## How to run tests27281. Run `yarn install`.292. Optional step - configure tests with env variables or by editing [configuration file](src/config.ts).303. Run `yarn test`.31
after · tests/README.md
1# Tests23## Prepare test environment451. Checkout polkadot in sibling folder with this project6```bash7git clone https://github.com/paritytech/polkadot.git && cd polkadot8git checkout release-v0.9.99```10112. Build with nightly-2021-06-2812```bash13cargo build --release14```15163. Build the project17184. Checkout polkadot-launch in the sibling folder:19```bash20git clone https://github.com/paritytech/polkadot-launch && cd polkadot-launch21```22235. Run launch-test-env.sh from the root of this project242526## How to run tests27281. Run `yarn install`.292. Optional step - configure tests with env variables or by editing [configuration file](src/config.ts).303. Run `yarn test`.31