difftreelog
Merge pull request #669 from UniqueNetwork/rapid-parallel-start-v2-docs
in: master
Rapid parallel start v2 docs
11 files changed
.github/workflows/ci-develop.ymldiffbeforeafterboth--- a/.github/workflows/ci-develop.yml
+++ b/.github/workflows/ci-develop.yml
@@ -1,3 +1,4 @@
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586869783/CI+Develop
# Workflow which controls starts nested workflows.
name: develop
.github/workflows/ci-master.ymldiffbeforeafterboth--- a/.github/workflows/ci-master.yml
+++ b/.github/workflows/ci-master.yml
@@ -1,3 +1,4 @@
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2587656193/CI+Master
# Workflow which controls starts nested workflows.
name: master
.github/workflows/codestyle_v2.ymldiffbeforeafterboth1# Nested workflow for checks related to formatting Rust code 23name: cargo fmt45# Triger: only call from main workflow(re-usable workflows)6on:7 workflow_call:89jobs:10 rustfmt:11 runs-on: self-hosted-ci1213 steps:14 - uses: actions/checkout@v315 - name: Install latest nightly16 uses: actions-rs/toolchain@v117 with:18 toolchain: nightly19 default: true20 target: wasm32-unknown-unknown21 components: rustfmt, clippy 22 - name: Run cargo fmt23 run: cargo fmt -- --check # In that mode it returns only exit code.24 - name: Cargo fmt state25 if: success()26 run: echo "Nothing to do. Command 'cargo fmt -- --check' returned exit code 0."272829 clippy:30 if: ${{ false }}31 runs-on: self-hosted-ci32 33 steps:34 35 - uses: actions/checkout@v336 - name: Install substrate dependencies37 run: sudo apt-get install libssl-dev pkg-config libclang-dev clang38 - name: Install latest nightly39 uses: actions-rs/toolchain@v140 with:41 toolchain: nightly42 default: true43 target: wasm32-unknown-unknown44 components: rustfmt, clippy45 - name: Run cargo check46 run: cargo clippy -- -Dwarnings1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586837012/Code+style+testing2# Nested workflow for checks related to formatting Rust code 34name: cargo fmt56# Triger: only call from main workflow(re-usable workflows)7on:8 workflow_call:910jobs:11 rustfmt:12 runs-on: self-hosted-ci1314 steps:15 - uses: actions/checkout@v316 - name: Install latest nightly17 uses: actions-rs/toolchain@v118 with:19 toolchain: nightly20 default: true21 target: wasm32-unknown-unknown22 components: rustfmt, clippy 23 - name: Run cargo fmt24 run: cargo fmt -- --check # In that mode it returns only exit code.25 - name: Cargo fmt state26 if: success()27 run: echo "Nothing to do. Command 'cargo fmt -- --check' returned exit code 0."282930 clippy:31 if: ${{ false }}32 runs-on: self-hosted-ci33 34 steps:35 36 - uses: actions/checkout@v337 - name: Install substrate dependencies38 run: sudo apt-get install libssl-dev pkg-config libclang-dev clang39 - name: Install latest nightly40 uses: actions-rs/toolchain@v141 with:42 toolchain: nightly43 default: true44 target: wasm32-unknown-unknown45 components: rustfmt, clippy46 - name: Run cargo check47 run: cargo clippy -- -Dwarnings.github/workflows/dev-build-tests_v2.ymldiffbeforeafterboth--- a/.github/workflows/dev-build-tests_v2.yml
+++ b/.github/workflows/dev-build-tests_v2.yml
@@ -1,15 +1,11 @@
# Integration test in --dev mode
-# https://cryptousetech.atlassian.net/browse/CI-12
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586411104/Integration+tests
name: yarn test dev
# Triger: only call from main workflow(re-usable workflows)
on:
workflow_call:
-
-#Define Workflow variables
-env:
- REPO_URL: ${{ github.server_url }}/${{ github.repository }}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
.github/workflows/forkless-update-data_v2.ymldiffbeforeafterboth--- a/.github/workflows/forkless-update-data_v2.yml
+++ b/.github/workflows/forkless-update-data_v2.yml
@@ -1,5 +1,5 @@
# Forkless update with data replication
-# https://cryptousetech.atlassian.net/browse/CI-42
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586869792/Forkless+update+with+data
# Triger: only call from main workflow(re-usable workflows)
on:
.github/workflows/forkless-update-nodata_v2.ymldiffbeforeafterboth--- a/.github/workflows/forkless-update-nodata_v2.yml
+++ b/.github/workflows/forkless-update-nodata_v2.yml
@@ -1,14 +1,10 @@
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586837021/Forkless+update+without+data
# Forkless update without data replication
-# https://cryptousetech.atlassian.net/browse/CI-41
# Triger: only call from main workflow(re-usable workflows)
on:
workflow_call:
-
-#Define Workflow variables
-env:
- REPO_URL: ${{ github.server_url }}/${{ github.repository }}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
.github/workflows/market-test_v2.ymldiffbeforeafterboth--- a/.github/workflows/market-test_v2.yml
+++ b/.github/workflows/market-test_v2.yml
@@ -1,4 +1,4 @@
-#https://cryptousetech.atlassian.net/browse/CI-37
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586509375/Market+e2e+test
# Nested workflow for lunching Market e2e tests from external repository https://github.com/UniqueNetwork/market-e2e-tests
name: market api tests
.github/workflows/node-only-update_v2.ymldiffbeforeafterboth--- a/.github/workflows/node-only-update_v2.yml
+++ b/.github/workflows/node-only-update_v2.yml
@@ -1,4 +1,4 @@
-# https://cryptousetech.atlassian.net/browse/CI-85
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586837028/Nodes+only+update
# Node only update with restart polkadot-launch process.
name: nodes-only update
.github/workflows/test_codestyle_v2.ymldiffbeforeafterboth--- a/.github/workflows/test_codestyle_v2.yml
+++ b/.github/workflows/test_codestyle_v2.yml
@@ -1,3 +1,4 @@
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586804253/Yarn+eslint
# Yarn Eslint over tests
#
name: yarn eslint
.github/workflows/try-runtime_v2.ymldiffbeforeafterboth--- a/.github/workflows/try-runtime_v2.yml
+++ b/.github/workflows/try-runtime_v2.yml
@@ -1,5 +1,5 @@
# Try-runtime checks
-# https://cryptousetech.atlassian.net/browse/CI-38
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2587656213/Try+runtime
# Triger: only call from main workflow(re-usable workflows)
on:
.github/workflows/unit-test_v2.ymldiffbeforeafterboth--- a/.github/workflows/unit-test_v2.yml
+++ b/.github/workflows/unit-test_v2.yml
@@ -1,3 +1,4 @@
+# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586738699/Unit+Tests
# Re-Usable Workflow for lanching Unit tests
name: unit tests