git.delta.rocks / unique-network / refs/commits / e27974f74b82

difftreelog

Merge pull request #669 from UniqueNetwork/rapid-parallel-start-v2-docs

Alex2022-10-21parents: #44caa59 #53dab70.patch.diff
in: master
Rapid parallel start v2 docs

11 files changed

modified.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
 
modified.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
 
modified.github/workflows/codestyle_v2.ymldiffbeforeafterboth
before · .github/workflows/codestyle_v2.yml
1# 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 -- -Dwarnings
modified.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
modified.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:
modified.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:
modified.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
modified.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
modified.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
modified.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:
modified.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